[][src]Struct sequoia_openpgp::types::Features

pub struct Features { /* fields omitted */ }

Describes features supported by an OpenPGP implementation.

Methods

impl Features[src]

pub fn new<B: AsRef<[u8]>>(bits: B) -> Self[src]

Creates a new instance from bits.

pub fn sequoia() -> Self[src]

Returns an feature set describing Sequoia.

pub fn supports_mdc(&self) -> bool[src]

Whether or not MDC is supported.

pub fn set_mdc(self, v: bool) -> Self[src]

Sets whether or not MDC is supported.

pub fn supports_aead(&self) -> bool[src]

Whether or not AEAD is supported.

pub fn set_aead(self, v: bool) -> Self[src]

Sets whether or not AEAD is supported.

Trait Implementations

impl Clone for Features[src]

impl Debug for Features[src]

impl Default for Features[src]

impl Eq for Features[src]

impl Hash for Features[src]

impl PartialEq<Features> for Features[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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,