[][src]Struct sequoia_openpgp::types::KeyServerPreferences

pub struct KeyServerPreferences { /* fields omitted */ }

Describes preferences regarding key servers.

A note on equality

PartialEq is implements semantic equality, i.e. it ignores padding.

Implementations

impl KeyServerPreferences[src]

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

Creates a new instance from bits.

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

Whether or not keyservers are allowed to modify this key.

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

Sets whether or not keyservers are allowed to modify this key.

Trait Implementations

impl Arbitrary for KeyServerPreferences[src]

impl Clone for KeyServerPreferences[src]

impl Debug for KeyServerPreferences[src]

impl Default for KeyServerPreferences[src]

impl Eq for KeyServerPreferences[src]

impl Hash for KeyServerPreferences[src]

impl PartialEq<KeyServerPreferences> for KeyServerPreferences[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>,