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