pub struct RootDelegationV1 {
pub schema_version: String,
pub source_id: String,
pub root_epoch: String,
pub previous_root_epoch: String,
pub previous_delegation_sha256: String,
pub generated_at: String,
pub expires_at: String,
pub delegated_keys: Vec<RootDelegatedKey>,
pub key_id: String,
pub signature: String,
}Fields§
§schema_version: String§source_id: String§root_epoch: String§previous_root_epoch: String§previous_delegation_sha256: String§generated_at: String§expires_at: String§delegated_keys: Vec<RootDelegatedKey>§key_id: String§signature: StringTrait Implementations§
Source§impl Clone for RootDelegationV1
impl Clone for RootDelegationV1
Source§fn clone(&self) -> RootDelegationV1
fn clone(&self) -> RootDelegationV1
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 RootDelegationV1
impl Debug for RootDelegationV1
Source§impl<'de> Deserialize<'de> for RootDelegationV1
impl<'de> Deserialize<'de> for RootDelegationV1
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 RootDelegationV1
Source§impl PartialEq for RootDelegationV1
impl PartialEq for RootDelegationV1
Source§impl Serialize for RootDelegationV1
impl Serialize for RootDelegationV1
impl StructuralPartialEq for RootDelegationV1
Auto Trait Implementations§
impl Freeze for RootDelegationV1
impl RefUnwindSafe for RootDelegationV1
impl Send for RootDelegationV1
impl Sync for RootDelegationV1
impl Unpin for RootDelegationV1
impl UnsafeUnpin for RootDelegationV1
impl UnwindSafe for RootDelegationV1
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