pub trait Writer<'a> {
    fn start(obj: Obj<'a>) -> Self;
}
Expand description

A writer for a specific type of PDF object.

Required methods

Start writing the object.

Implementors