pub struct AttestationKeySet {
pub root_pid: Principal,
pub generated_at: u64,
pub keys: Vec<AttestationKey>,
}Expand description
AttestationKeySet
Fields§
§root_pid: Principal§generated_at: u64§keys: Vec<AttestationKey>Trait Implementations§
Source§impl CandidType for AttestationKeySet
impl CandidType for AttestationKeySet
Source§impl Clone for AttestationKeySet
impl Clone for AttestationKeySet
Source§fn clone(&self) -> AttestationKeySet
fn clone(&self) -> AttestationKeySet
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 Debug for AttestationKeySet
impl Debug for AttestationKeySet
Source§impl<'de> Deserialize<'de> for AttestationKeySet
impl<'de> Deserialize<'de> for AttestationKeySet
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
Source§impl PartialEq for AttestationKeySet
impl PartialEq for AttestationKeySet
impl Eq for AttestationKeySet
impl StructuralPartialEq for AttestationKeySet
Auto Trait Implementations§
impl Freeze for AttestationKeySet
impl RefUnwindSafe for AttestationKeySet
impl Send for AttestationKeySet
impl Sync for AttestationKeySet
impl Unpin for AttestationKeySet
impl UnsafeUnpin for AttestationKeySet
impl UnwindSafe for AttestationKeySet
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