pub struct WireKeyBindingLiveness {
pub revoked_at: Option<DateTime<Utc>>,
}Expand description
Liveness portion of a signed key binding, explicit at the wire boundary.
The conversion back to the object model restores revoked_at before any
signature verification, so the fields covered by added_by_sig remain
byte-for-byte equivalent to the source binding.
Fields§
§revoked_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for WireKeyBindingLiveness
impl Clone for WireKeyBindingLiveness
Source§fn clone(&self) -> WireKeyBindingLiveness
fn clone(&self) -> WireKeyBindingLiveness
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WireKeyBindingLiveness
impl Debug for WireKeyBindingLiveness
Source§impl Default for WireKeyBindingLiveness
impl Default for WireKeyBindingLiveness
Source§fn default() -> WireKeyBindingLiveness
fn default() -> WireKeyBindingLiveness
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WireKeyBindingLiveness
impl<'de> Deserialize<'de> for WireKeyBindingLiveness
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 Eq for WireKeyBindingLiveness
Source§impl PartialEq for WireKeyBindingLiveness
impl PartialEq for WireKeyBindingLiveness
Source§impl Serialize for WireKeyBindingLiveness
impl Serialize for WireKeyBindingLiveness
impl StructuralPartialEq for WireKeyBindingLiveness
Auto Trait Implementations§
impl Freeze for WireKeyBindingLiveness
impl RefUnwindSafe for WireKeyBindingLiveness
impl Send for WireKeyBindingLiveness
impl Sync for WireKeyBindingLiveness
impl Unpin for WireKeyBindingLiveness
impl UnsafeUnpin for WireKeyBindingLiveness
impl UnwindSafe for WireKeyBindingLiveness
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