Trait assembly_pack::pk::fs::PKWriter

source ·
pub trait PKWriter {
    // Required method
    fn write<W: Write>(&mut self, writer: &mut W) -> Result<()>;
}
Available on crate feature pk only.
Expand description

Inversion of control to put bytes into PK

Required Methods§

source

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

Write the bytes into the file

Object Safety§

This trait is not object safe.

Implementors§