[][src]Struct p12::SafeBag

pub struct SafeBag {
    pub bag: SafeBagKind,
    pub attributes: Vec<PKCS12Attribute>,
}

Fields

bag: SafeBagKindattributes: Vec<PKCS12Attribute>

Implementations

impl SafeBag[src]

pub fn parse(r: BERReader<'_, '_>) -> Result<Self, ASN1Error>[src]

pub fn write(&self, w: DERWriter<'_>)[src]

pub fn friendly_name(&self) -> Option<String>[src]

pub fn local_key_id(&self) -> Option<Vec<u8>>[src]

Trait Implementations

impl Clone for SafeBag[src]

impl Debug for SafeBag[src]

Auto Trait Implementations

impl RefUnwindSafe for SafeBag

impl Send for SafeBag

impl Sync for SafeBag

impl Unpin for SafeBag

impl UnwindSafe for SafeBag

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> Same<T> for T

type Output = T

Should always be Self

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.