Struct security_framework::os::macos::import_export::SecItems
source · [−]pub struct SecItems {
pub certificates: Vec<SecCertificate>,
pub identities: Vec<SecIdentity>,
pub keys: Vec<SecKey>,
}
Expand description
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
Auto Trait Implementations
impl RefUnwindSafe for SecItems
impl Send for SecItems
impl Sync for SecItems
impl Unpin for SecItems
impl UnwindSafe for SecItems
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more