pub struct AndroidAppCertificateFingerprint {
pub fingerprint: B64Url,
pub hash_alg: AndroidAppHashAlgorithm,
}Fields§
§fingerprint: B64UrlThis is the hash of the application’s public certificate using the hashing algorithm defined in AndroidAppCertificateFingerprint::hash_alg. The bytes of the hash are then encoded into base64url directly.
hash_alg: AndroidAppHashAlgorithmThe algorithm used to hash the AndroidAppCertificateFingerprint::fingerprint. This SHOULD be of value AndroidAppHashAlgorithm.
Trait Implementations§
Source§impl Clone for AndroidAppCertificateFingerprint
impl Clone for AndroidAppCertificateFingerprint
Source§fn clone(&self) -> AndroidAppCertificateFingerprint
fn clone(&self) -> AndroidAppCertificateFingerprint
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for AndroidAppCertificateFingerprint
impl<'de> Deserialize<'de> for AndroidAppCertificateFingerprint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AndroidAppCertificateFingerprint
impl RefUnwindSafe for AndroidAppCertificateFingerprint
impl Send for AndroidAppCertificateFingerprint
impl Sync for AndroidAppCertificateFingerprint
impl Unpin for AndroidAppCertificateFingerprint
impl UnwindSafe for AndroidAppCertificateFingerprint
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more