/// Binding version of [`crate::https::HttpsResult`]. #[derive(uniffi::Enum)] pubenum HttpsResult { /// Contains the HTTPS response.
Response(HttpsResponse),
/// Contains the HTTPS error.
Error(HttpsError),
}
#[duplicate_item(
response_type;
[ RemoteSecretSetupResponse ];
[ RemoteSecretMonitorResponse ];
)] impl From<HttpsResult> for response_type { fn from(response: HttpsResult) -> Self { let result = match response {
HttpsResult::Response(https_response) => Ok(https_response),
HttpsResult::Error(https_error) => Err(https_error),
};
Self { result }
}
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.14 Sekunden
(vorverarbeitet am 2026-06-28)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.