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

pub struct Generic<W: Write, C> { /* fields omitted */ }

Generic writer wrapping io::Write.

Methods

impl<'a, W: 'a + Write, C: 'a> Generic<W, C>[src]

Important traits for Stack<'a, C>
pub fn new(inner: W, cookie: C) -> Stack<'a, C>[src]

Wraps an io::Writer.

Trait Implementations

impl<W: Write, C> Debug for Generic<W, C>[src]

impl<W: Write, C> Write for Generic<W, C>[src]

Auto Trait Implementations

impl<W, C> RefUnwindSafe for Generic<W, C> where
    C: RefUnwindSafe,
    W: RefUnwindSafe

impl<W, C> Send for Generic<W, C> where
    C: Send,
    W: Send

impl<W, C> Sync for Generic<W, C> where
    C: Sync,
    W: Sync

impl<W, C> Unpin for Generic<W, C> where
    C: Unpin,
    W: Unpin

impl<W, C> UnwindSafe for Generic<W, C> where
    C: UnwindSafe,
    W: UnwindSafe

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