[][src]Struct pgp::packet::LiteralData

pub struct LiteralData { /* fields omitted */ }

Literal Data Packet https://tools.ietf.org/html/rfc4880.html#section-5.9

Methods

impl LiteralData[src]

pub fn from_str(file_name: &str, raw_data: &str) -> Self[src]

Creates a literal data packet from the given string. Normalizes line endings.

pub fn from_bytes(file_name: &str, data: &[u8]) -> Self[src]

Creates a literal data packet from the given bytes.

pub fn from_slice(packet_version: Version, input: &[u8]) -> Result<Self>[src]

Parses a LiteralData packet from the given slice.

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

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

pub fn to_string(&self) -> Option<String>[src]

Convert the data to a UTF-8 string, if appropriate for the type. Returns None if mode is Binary, or the data is not valid UTF-8.

Trait Implementations

impl PacketTrait for LiteralData[src]

impl Serialize for LiteralData[src]

impl From<LiteralData> for Packet[src]

impl Clone for LiteralData[src]

impl Eq for LiteralData[src]

impl PartialEq<LiteralData> for LiteralData[src]

impl Debug for LiteralData[src]

impl TryFrom<Packet> for LiteralData[src]

type Err = Error

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Err = <U as TryFrom<T>>::Err