[][src]Struct parsec_interface::operations::OpImportKey

pub struct OpImportKey {
    pub key_name: String,
    pub key_attributes: KeyAttributes,
    pub key_data: Vec<u8>,
}

Native object for cryptographic key importing operation.

key_name specifies a name by which the service will identify the key. Key name must be unique per application. key_attributes specifies the parameters to be associated with the key. key_data contains the bytes for the key, formatted in accordance with the requirements of the provider for the key type specified in key_attributes.

Fields

key_name: Stringkey_attributes: KeyAttributeskey_data: Vec<u8>

Trait Implementations

impl Clone for OpImportKey[src]

impl Debug for OpImportKey[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.