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 Freeze for SecItems
impl RefUnwindSafe for SecItems
impl Send for SecItems
impl Sync for SecItems
impl Unpin for SecItems
impl UnwindSafe for SecItems
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