Trait assembly::pk::fs::PKWriter

source ·
pub trait PKWriter {
    // Required method
    fn write<W>(&mut self, writer: &mut W) -> Result<(), Error>
       where W: Write;
}
Expand description

Inversion of control to put bytes into PK

Required Methods§

source

fn write<W>(&mut self, writer: &mut W) -> Result<(), Error>
where W: Write,

Write the bytes into the file

Object Safety§

This trait is not object safe.

Implementors§