[][src]Struct sequoia_openpgp::packet::signature::subpacket::NotationDataFlags

pub struct NotationDataFlags(_);

Flags for the Notation Data subpacket.

Implementations

impl NotationDataFlags[src]

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

Creates a new instance from bits.

pub fn empty() -> Self[src]

Returns an empty key server preference set.

pub fn get(&self, bit: usize) -> bool[src]

Returns whether the specified notation data flag is set.

Examples

use sequoia_openpgp as openpgp;
use openpgp::packet::signature::subpacket::NotationDataFlags;

// Notation Data flags 0 and 2.
let ndf = NotationDataFlags::new(&[5, 0, 0, 0])?;

assert!(ndf.get(0));
assert!(! ndf.get(1));
assert!(ndf.get(2));
assert!(! ndf.get(3));
assert!(! ndf.get(8));
assert!(! ndf.get(80));

pub fn set(self, bit: usize) -> Result<Self>[src]

Sets the specified notation data flag.

Examples

use sequoia_openpgp as openpgp;
use openpgp::packet::signature::subpacket::NotationDataFlags;

let ndf = NotationDataFlags::empty().set(0)?.set(2)?;

assert!(ndf.get(0));
assert!(! ndf.get(1));
assert!(ndf.get(2));
assert!(! ndf.get(3));

pub fn clear(self, bit: usize) -> Result<Self>[src]

Clears the specified notation data flag.

Examples

use sequoia_openpgp as openpgp;
use openpgp::packet::signature::subpacket::NotationDataFlags;

let ndf = NotationDataFlags::empty().set(0)?.set(2)?.clear(2)?;

assert!(ndf.get(0));
assert!(! ndf.get(1));
assert!(! ndf.get(2));
assert!(! ndf.get(3));

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

Returns whether the value is human-readable.

pub fn set_human_readable(self) -> Self[src]

Asserts that the value is human-readable.

pub fn clear_human_readable(self) -> Self[src]

Clear the assertion that the value is human-readable.

Trait Implementations

impl Clone for NotationDataFlags[src]

impl Debug for NotationDataFlags[src]

impl Eq for NotationDataFlags[src]

impl Hash for NotationDataFlags[src]

impl Ord for NotationDataFlags[src]

impl PartialEq<NotationDataFlags> for NotationDataFlags[src]

impl PartialOrd<NotationDataFlags> for NotationDataFlags[src]

impl StructuralEq for NotationDataFlags[src]

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