pub struct DeserializeKey {
pub mechanism: Mechanism,
pub serialized_key: SerializedKey,
pub format: KeySerialization,
pub attributes: StorageAttributes,
}Fields§
§mechanism: Mechanism§serialized_key: SerializedKey§format: KeySerialization§attributes: StorageAttributesTrait Implementations§
Source§impl Clone for DeserializeKey
impl Clone for DeserializeKey
Source§fn clone(&self) -> DeserializeKey
fn clone(&self) -> DeserializeKey
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 DeserializeKey
impl Debug for DeserializeKey
Source§impl From<DeserializeKey> for Request
Available on crate feature crypto-client only.
impl From<DeserializeKey> for Request
Available on crate feature
crypto-client only.Source§fn from(request: DeserializeKey) -> Self
fn from(request: DeserializeKey) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DeserializeKey
impl PartialEq for DeserializeKey
Source§fn eq(&self, other: &DeserializeKey) -> bool
fn eq(&self, other: &DeserializeKey) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RequestVariant for DeserializeKey
Available on crate feature crypto-client only.
impl RequestVariant for DeserializeKey
Available on crate feature
crypto-client only.type Reply = DeserializeKey
Source§impl TryFrom<Request> for DeserializeKey
Available on crate feature crypto-client only.
impl TryFrom<Request> for DeserializeKey
Available on crate feature
crypto-client only.impl Eq for DeserializeKey
impl StructuralPartialEq for DeserializeKey
Auto Trait Implementations§
impl Freeze for DeserializeKey
impl RefUnwindSafe for DeserializeKey
impl Send for DeserializeKey
impl Sync for DeserializeKey
impl Unpin for DeserializeKey
impl UnsafeUnpin for DeserializeKey
impl UnwindSafe for DeserializeKey
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