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