pub struct RootDelegatedKey {
pub algorithm: String,
pub key_id: String,
pub public_key: String,
pub usages: Vec<DelegatedKeyUsage>,
pub channels: Vec<String>,
pub valid_from: String,
pub valid_until: String,
}Fields§
§algorithm: String§key_id: String§public_key: String§usages: Vec<DelegatedKeyUsage>§channels: Vec<String>§valid_from: String§valid_until: StringTrait Implementations§
Source§impl Clone for RootDelegatedKey
impl Clone for RootDelegatedKey
Source§fn clone(&self) -> RootDelegatedKey
fn clone(&self) -> RootDelegatedKey
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 RootDelegatedKey
impl Debug for RootDelegatedKey
Source§impl<'de> Deserialize<'de> for RootDelegatedKey
impl<'de> Deserialize<'de> for RootDelegatedKey
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 RootDelegatedKey
Source§impl PartialEq for RootDelegatedKey
impl PartialEq for RootDelegatedKey
Source§impl Serialize for RootDelegatedKey
impl Serialize for RootDelegatedKey
impl StructuralPartialEq for RootDelegatedKey
Auto Trait Implementations§
impl Freeze for RootDelegatedKey
impl RefUnwindSafe for RootDelegatedKey
impl Send for RootDelegatedKey
impl Sync for RootDelegatedKey
impl Unpin for RootDelegatedKey
impl UnsafeUnpin for RootDelegatedKey
impl UnwindSafe for RootDelegatedKey
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