Trait integer_encoding::FixedIntWriter
[−]
[src]
pub trait FixedIntWriter {
fn write_fixedint<FI: FixedInt>(&mut self, n: FI) -> Result<usize>;
}A trait for writing integers without encoding (i.e. FixedInt) to any Write type.
Required Methods
fn write_fixedint<FI: FixedInt>(&mut self, n: FI) -> Result<usize>
Implementors
impl<W: Write> FixedIntWriter for W