[][src]Struct genio::util::Sink

pub struct Sink;

Silently drops everything that is written to it.

Trait Implementations

impl Write for Sink[src]

type WriteError = Void

Value of this type is returned when write() fails. Read more

type FlushError = Void

Value of this type is returned when flush() fails. In case of low-level writers flush often does nothing and therefore doesn't return error, so this type might be Void. Read more

fn write_all(&mut self, buf: &[u8]) -> Result<(), Self::WriteError>[src]

Attempts to write an entire buffer into this Write.

fn uses_size_hint(&self) -> bool[src]

Reports to the caller whether size hint is actually used. This can prevent costly computation of size hint that would be thrown away. Read more

Auto Trait Implementations

impl Send for Sink

impl Sync for Sink

Blanket Implementations

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> From for T[src]

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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