pub struct OperationalCert {
pub operational_cert_hot_vkey: Bytes,
pub operational_cert_sequence_number: u64,
pub operational_cert_kes_period: u64,
pub operational_cert_sigma: Bytes,
}Fields§
§operational_cert_hot_vkey: Bytes§operational_cert_sequence_number: u64§operational_cert_kes_period: u64§operational_cert_sigma: BytesTrait Implementations§
Source§impl Clone for OperationalCert
impl Clone for OperationalCert
Source§fn clone(&self) -> OperationalCert
fn clone(&self) -> OperationalCert
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 OperationalCert
impl Debug for OperationalCert
Source§impl<'bytes, Ctx> Decode<'bytes, Ctx> for OperationalCert
impl<'bytes, Ctx> Decode<'bytes, Ctx> for OperationalCert
Source§impl<'de> Deserialize<'de> for OperationalCert
impl<'de> Deserialize<'de> for OperationalCert
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<OperationalCert, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OperationalCert, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<Ctx> Encode<Ctx> for OperationalCert
impl<Ctx> Encode<Ctx> for OperationalCert
impl Eq for OperationalCert
Source§impl Ord for OperationalCert
impl Ord for OperationalCert
Source§fn cmp(&self, other: &OperationalCert) -> Ordering
fn cmp(&self, other: &OperationalCert) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OperationalCert
impl PartialEq for OperationalCert
Source§fn eq(&self, other: &OperationalCert) -> bool
fn eq(&self, other: &OperationalCert) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for OperationalCert
impl PartialOrd for OperationalCert
Source§impl Serialize for OperationalCert
impl Serialize for OperationalCert
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 StructuralPartialEq for OperationalCert
Auto Trait Implementations§
impl Freeze for OperationalCert
impl RefUnwindSafe for OperationalCert
impl Send for OperationalCert
impl Sync for OperationalCert
impl Unpin for OperationalCert
impl UnsafeUnpin for OperationalCert
impl UnwindSafe for OperationalCert
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> Fragment for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more