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

pub struct NotationData { /* fields omitted */ }

Payload of a NotationData subpacket.

The name falls into two namespaces: The user namespace and the IETF namespace. Names in the user namespace have the form name@example.org and are managed by the owner of the domain. Names in the IETF namespace may not contain an @ and are managed by IANA. See Section 5.2.3.16 of RFC 4880 for details.

Implementations

impl NotationData[src]

pub fn new<N, V, F>(name: N, value: V, flags: F) -> Self where
    N: AsRef<str>,
    V: AsRef<[u8]>,
    F: Into<Option<NotationDataFlags>>, 
[src]

Creates a new Notation Data subpacket payload.

pub fn flags(&self) -> NotationDataFlags[src]

Returns the flags.

pub fn name(&self) -> &str[src]

Returns the name.

pub fn value(&self) -> &[u8][src]

Returns the value.

Trait Implementations

impl Clone for NotationData[src]

impl Debug for NotationData[src]

impl Eq for NotationData[src]

impl Hash for NotationData[src]

impl PartialEq<NotationData> for NotationData[src]

impl StructuralEq for NotationData[src]

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