[][src]Struct lair_keystore_api::actor::CertPrivKey

pub struct CertPrivKey(pub Arc<Vec<u8>>);

Der encoded pkcs #8 Tls Certificate private key bytes.

Methods from Deref<Target = Arc<Vec<u8>>>

Trait Implementations

impl Clone for CertPrivKey[src]

impl Debug for CertPrivKey[src]

impl Deref for CertPrivKey[src]

type Target = Arc<Vec<u8>>

The resulting type after dereferencing.

impl Eq for CertPrivKey[src]

impl From<Arc<Vec<u8>>> for CertPrivKey[src]

impl From<CertPrivKey> for Arc<Vec<u8>>[src]

impl From<Vec<u8>> for CertPrivKey[src]

impl Hash for CertPrivKey[src]

impl Ord for CertPrivKey[src]

impl PartialEq<CertPrivKey> for CertPrivKey[src]

impl PartialOrd<CertPrivKey> for CertPrivKey[src]

impl StructuralEq for CertPrivKey[src]

impl StructuralPartialEq for CertPrivKey[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> Instrument 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.

impl<T> WithSubscriber for T[src]