pub struct KnowledgeDelegationV1 {
pub version: u64,
pub delegator: String,
pub delegatee: String,
pub action: String,
pub issued_at: u64,
pub expires_at: u64,
pub algorithm: String,
pub key_id: Option<String>,
pub signature: Vec<u8>,
}Fields§
§version: u64§delegator: String§delegatee: String§action: String§issued_at: u64§expires_at: u64§algorithm: String§key_id: Option<String>§signature: Vec<u8>Trait Implementations§
Source§impl Clone for KnowledgeDelegationV1
impl Clone for KnowledgeDelegationV1
Source§fn clone(&self) -> KnowledgeDelegationV1
fn clone(&self) -> KnowledgeDelegationV1
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 KnowledgeDelegationV1
impl Debug for KnowledgeDelegationV1
Source§impl PartialEq for KnowledgeDelegationV1
impl PartialEq for KnowledgeDelegationV1
impl StructuralPartialEq for KnowledgeDelegationV1
Auto Trait Implementations§
impl Freeze for KnowledgeDelegationV1
impl RefUnwindSafe for KnowledgeDelegationV1
impl Send for KnowledgeDelegationV1
impl Sync for KnowledgeDelegationV1
impl Unpin for KnowledgeDelegationV1
impl UnsafeUnpin for KnowledgeDelegationV1
impl UnwindSafe for KnowledgeDelegationV1
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