pub struct ChainKeyRootSignatureV1 {
pub algorithm: ChainKeyAlgorithm,
pub key_id: ChainKeyKeyId,
pub derivation_path: Vec<Vec<u8>>,
pub public_key: Vec<u8>,
pub signature: Vec<u8>,
}Fields§
§algorithm: ChainKeyAlgorithm§key_id: ChainKeyKeyId§derivation_path: Vec<Vec<u8>>§public_key: Vec<u8>§signature: Vec<u8>Trait Implementations§
Source§impl CandidType for ChainKeyRootSignatureV1
impl CandidType for ChainKeyRootSignatureV1
Source§impl Clone for ChainKeyRootSignatureV1
impl Clone for ChainKeyRootSignatureV1
Source§fn clone(&self) -> ChainKeyRootSignatureV1
fn clone(&self) -> ChainKeyRootSignatureV1
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 ChainKeyRootSignatureV1
impl Debug for ChainKeyRootSignatureV1
Source§impl<'de> Deserialize<'de> for ChainKeyRootSignatureV1
impl<'de> Deserialize<'de> for ChainKeyRootSignatureV1
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 ChainKeyRootSignatureV1
Source§impl PartialEq for ChainKeyRootSignatureV1
impl PartialEq for ChainKeyRootSignatureV1
Source§fn eq(&self, other: &ChainKeyRootSignatureV1) -> bool
fn eq(&self, other: &ChainKeyRootSignatureV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ChainKeyRootSignatureV1
impl Serialize for ChainKeyRootSignatureV1
impl StructuralPartialEq for ChainKeyRootSignatureV1
Auto Trait Implementations§
impl Freeze for ChainKeyRootSignatureV1
impl RefUnwindSafe for ChainKeyRootSignatureV1
impl Send for ChainKeyRootSignatureV1
impl Sync for ChainKeyRootSignatureV1
impl Unpin for ChainKeyRootSignatureV1
impl UnsafeUnpin for ChainKeyRootSignatureV1
impl UnwindSafe for ChainKeyRootSignatureV1
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