[][src]Struct sequoia_openpgp::serialize::stream::Message

pub struct Message<'a, C>(_);

Streams an OpenPGP message.

Wraps a std::io::Writer for use with the streaming subsystem.

Implementations

impl<'a> Message<'a, Cookie>[src]

pub fn new<W: 'a + Write>(w: W) -> Message<'a, Cookie>[src]

Streams an OpenPGP message.

pub fn finalize_one(self) -> Result<Option<Message<'a, Cookie>>>[src]

Finalizes this writer, returning the underlying writer.

pub fn finalize(self) -> Result<()>[src]

Finalizes all writers, tearing down the whole stack.

Trait Implementations

impl<'a, C: Debug> Debug for Message<'a, C>[src]

impl<'a> From<&'a mut (dyn Write + 'a)> for Message<'a, Cookie>[src]

impl<'a, C> From<Message<'a, C>> for Box<dyn Stackable<'a, C> + 'a>[src]

impl<'a, C> Write for Message<'a, C>[src]

Auto Trait Implementations

impl<'a, C> !RefUnwindSafe for Message<'a, C>

impl<'a, C> !Send for Message<'a, C>

impl<'a, C> !Sync for Message<'a, C>

impl<'a, C> Unpin for Message<'a, C>

impl<'a, C> !UnwindSafe for Message<'a, C>

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, 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>,