pub struct ApplicationSigningKeyCert {
pub signing_key_cert_fingerprint_sha256: Option<Vec<u8>>,
}Expand description
The application signing key certificate.
This type is not used in any activity, and only used as part of another schema.
Fields§
§signing_key_cert_fingerprint_sha256: Option<Vec<u8>>Required. The SHA-256 hash value of the signing key certificate of the app. This must be a valid SHA-256 hash value, i.e. 32 bytes. Otherwise, the policy is rejected.
Trait Implementations§
Source§impl Clone for ApplicationSigningKeyCert
impl Clone for ApplicationSigningKeyCert
Source§fn clone(&self) -> ApplicationSigningKeyCert
fn clone(&self) -> ApplicationSigningKeyCert
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 Debug for ApplicationSigningKeyCert
impl Debug for ApplicationSigningKeyCert
Source§impl Default for ApplicationSigningKeyCert
impl Default for ApplicationSigningKeyCert
Source§fn default() -> ApplicationSigningKeyCert
fn default() -> ApplicationSigningKeyCert
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationSigningKeyCert
impl<'de> Deserialize<'de> for ApplicationSigningKeyCert
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
impl Part for ApplicationSigningKeyCert
Auto Trait Implementations§
impl Freeze for ApplicationSigningKeyCert
impl RefUnwindSafe for ApplicationSigningKeyCert
impl Send for ApplicationSigningKeyCert
impl Sync for ApplicationSigningKeyCert
impl Unpin for ApplicationSigningKeyCert
impl UnwindSafe for ApplicationSigningKeyCert
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