[][src]Trait irmaseal_core::Writable

pub trait Writable {
    fn write(&mut self, buf: &[u8]) -> Result<(), Error>;
}

A writable resource that accepts chunks of a bytestream.

Required methods

fn write(&mut self, buf: &[u8]) -> Result<(), Error>

Write the argument slice to the underlying resource. Needs to consume the entire slice.

Loading content...

Implementations on Foreign Types

impl<A: Array<Item = u8>> Writable for ArrayVec<A>[src]

impl Writable for Hmac<Sha3_256>[src]

Loading content...

Implementors

impl<'a, W: Writable> Writable for Sealer<'a, W>[src]

Loading content...