pub struct ActiveDelegationProof {
pub proof: DelegationProof,
pub cert_hash: [u8; 32],
pub not_before_ns: u64,
pub expires_at_ns: u64,
pub refresh_after_ns: u64,
pub installed_at_ns: u64,
pub installed_by: Principal,
}Fields§
§proof: DelegationProof§cert_hash: [u8; 32]§not_before_ns: u64§expires_at_ns: u64§refresh_after_ns: u64§installed_at_ns: u64§installed_by: PrincipalTrait Implementations§
Source§impl CandidType for ActiveDelegationProof
impl CandidType for ActiveDelegationProof
Source§impl Clone for ActiveDelegationProof
impl Clone for ActiveDelegationProof
Source§fn clone(&self) -> ActiveDelegationProof
fn clone(&self) -> ActiveDelegationProof
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 ActiveDelegationProof
impl Debug for ActiveDelegationProof
Source§impl<'de> Deserialize<'de> for ActiveDelegationProof
impl<'de> Deserialize<'de> for ActiveDelegationProof
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 ActiveDelegationProof
Source§impl PartialEq for ActiveDelegationProof
impl PartialEq for ActiveDelegationProof
Source§fn eq(&self, other: &ActiveDelegationProof) -> bool
fn eq(&self, other: &ActiveDelegationProof) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ActiveDelegationProof
impl Serialize for ActiveDelegationProof
impl StructuralPartialEq for ActiveDelegationProof
Auto Trait Implementations§
impl Freeze for ActiveDelegationProof
impl RefUnwindSafe for ActiveDelegationProof
impl Send for ActiveDelegationProof
impl Sync for ActiveDelegationProof
impl Unpin for ActiveDelegationProof
impl UnsafeUnpin for ActiveDelegationProof
impl UnwindSafe for ActiveDelegationProof
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