pub struct DeserializeKey {
pub mechanism: Mechanism,
pub serialized_key: SerializedKey,
pub format: KeySerialization,
pub attributes: StorageAttributes,
}
Available on crate feature
crypto-client
only.Fields§
§mechanism: Mechanism
§serialized_key: SerializedKey
§format: KeySerialization
§attributes: StorageAttributes
Trait 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 · 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
impl From<DeserializeKey> for Request
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§impl RequestVariant for DeserializeKey
impl RequestVariant for DeserializeKey
type Reply = DeserializeKey
Source§impl TryFrom<Request> for DeserializeKey
impl TryFrom<Request> for DeserializeKey
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 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