[][src]Enum sequoia_openpgp::types::DataFormat

pub enum DataFormat {
    Binary,
    Text,
    Unicode,
    MIME,
    Unknown(char),
    // some variants omitted
}

Describes the format of the body of a literal data packet.

See the description of literal data packets Section 5.9 of RFC 4880.

Examples

Construct a new Message containing one text literal packet:

use sequoia_openpgp as openpgp;
use std::convert::TryFrom;
use openpgp::packet::prelude::*;
use openpgp::types::DataFormat;
use openpgp::message::Message;

let mut packets = Vec::new();
let mut lit = Literal::new(DataFormat::Text);
lit.set_body(b"data".to_vec());
packets.push(lit.into());

let message = Message::try_from(packets);
assert!(message.is_ok(), "{:?}", message);

Variants

Binary

Binary data.

This is a hint that the content is probably binary data.

Text

Text data.

This is a hint that the content is probably text; the encoding is not specified.

Unicode

Text data, probably valid UTF-8.

This is a hint that the content is probably UTF-8 encoded.

MIME

MIME message.

This is defined in Section 5.10 of RFC4880bis.

Unknown(char)

Unknown format specifier.

Trait Implementations

impl Clone for DataFormat[src]

impl Copy for DataFormat[src]

impl Debug for DataFormat[src]

impl Default for DataFormat[src]

impl Display for DataFormat[src]

impl Eq for DataFormat[src]

impl From<DataFormat> for u8[src]

impl From<DataFormat> for char[src]

impl From<char> for DataFormat[src]

impl From<u8> for DataFormat[src]

impl Hash for DataFormat[src]

impl Ord for DataFormat[src]

impl PartialEq<DataFormat> for DataFormat[src]

impl PartialOrd<DataFormat> for DataFormat[src]

impl StructuralEq for DataFormat[src]

impl StructuralPartialEq for DataFormat[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> ToString for T where
    T: Display + ?Sized
[src]

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.