pub trait WriteOptions: Default {
    fn is_valid(&self) -> bool;
    fn buffer_size<T, const FORMAT: u128>(&self) -> usize
    where
        T: FormattedSize
; }
Expand description

Shared trait for all writer options.

Required Methods

Determine if the options are valid.

Get an upper bound on the buffer size.

Implementors