Trait bytes::Source [] [src]

pub trait Source {
    fn source<B: BufMut>(self, buf: &mut B);
}

A value that writes bytes from itself into a BufMut.

Required Methods

Copy data from self into destination buffer

Implementors