[][src]Struct sequoia_openpgp::serialize::writer::Stack

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

A stack of writers.

Methods

impl<'a, C> Stack<'a, C>[src]

pub fn finalize_one(self) -> Result<Option<Stack<'a, C>>>[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 Stack<'a, C>[src]

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

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

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

Auto Trait Implementations

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

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

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

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

impl<'a, C> !UnwindSafe for Stack<'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>,