pub struct CheckpointTrustAnchorIdentity {
pub kind: CheckpointTrustAnchorIdentityKind,
pub identity: String,
}Expand description
Optional typed trust-anchor identity carried alongside a checkpoint record.
Fields§
§kind: CheckpointTrustAnchorIdentityKind§identity: StringImplementations§
Source§impl CheckpointTrustAnchorIdentity
impl CheckpointTrustAnchorIdentity
pub fn new( kind: CheckpointTrustAnchorIdentityKind, identity: impl Into<String>, ) -> CheckpointTrustAnchorIdentity
pub fn has_identity(&self) -> bool
Trait Implementations§
Source§impl Clone for CheckpointTrustAnchorIdentity
impl Clone for CheckpointTrustAnchorIdentity
Source§fn clone(&self) -> CheckpointTrustAnchorIdentity
fn clone(&self) -> CheckpointTrustAnchorIdentity
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 CheckpointTrustAnchorIdentity
impl<'de> Deserialize<'de> for CheckpointTrustAnchorIdentity
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CheckpointTrustAnchorIdentity, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CheckpointTrustAnchorIdentity, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CheckpointTrustAnchorIdentity
impl PartialEq for CheckpointTrustAnchorIdentity
Source§fn eq(&self, other: &CheckpointTrustAnchorIdentity) -> bool
fn eq(&self, other: &CheckpointTrustAnchorIdentity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CheckpointTrustAnchorIdentity
impl Serialize for CheckpointTrustAnchorIdentity
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for CheckpointTrustAnchorIdentity
impl StructuralPartialEq for CheckpointTrustAnchorIdentity
Auto Trait Implementations§
impl Freeze for CheckpointTrustAnchorIdentity
impl RefUnwindSafe for CheckpointTrustAnchorIdentity
impl Send for CheckpointTrustAnchorIdentity
impl Sync for CheckpointTrustAnchorIdentity
impl Unpin for CheckpointTrustAnchorIdentity
impl UnsafeUnpin for CheckpointTrustAnchorIdentity
impl UnwindSafe for CheckpointTrustAnchorIdentity
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