[][src]Struct sequoia_openpgp::packet::key::PublicParts

pub struct PublicParts;

A marker that indicates that a Key should be treated like a public key.

Note: this doesn't indicate whether the data structure contains secret key material; it indicates whether any secret key material should be ignored. For instance, when exporting a key with the PublicParts marker, secret key material will not be exported. See the documentation for Key for a demonstration.

Refer to KeyParts for details.

Trait Implementations

impl Clone for PublicParts[src]

impl Copy for PublicParts[src]

impl Debug for PublicParts[src]

impl Eq for PublicParts[src]

impl Hash for PublicParts[src]

impl KeyParts for PublicParts[src]

impl PartialEq<PublicParts> for PublicParts[src]

impl StructuralEq for PublicParts[src]

impl StructuralPartialEq for PublicParts[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> DynClone for T where
    T: Clone
[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.