[][src]Struct security_framework::os::macos::import_export::SecItems

pub struct SecItems {
    pub certificates: Vec<SecCertificate>,
    pub identities: Vec<SecIdentity>,
    pub keys: Vec<SecKey>,
}

A type which holds items imported from serialized data.

Pass a reference to ImportOptions::items.

Fields

certificates: Vec<SecCertificate>

Imported certificates.

identities: Vec<SecIdentity>

Imported identities.

keys: Vec<SecKey>

Imported keys.

Trait Implementations

impl Default for SecItems[src]

Auto Trait Implementations

impl Send for SecItems

impl Sync for SecItems

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.