Trait bendy::encoder::PrintableInteger[][src]

pub trait PrintableInteger {
    fn write_to<W: Write>(self, w: W) -> Result<()>;
}

A value that can be formatted as a decimal integer

Required Methods

Write the value as a decimal integer

Implementations on Foreign Types

impl PrintableInteger for u8
[src]

impl PrintableInteger for u16
[src]

impl PrintableInteger for u32
[src]

impl PrintableInteger for u64
[src]

impl PrintableInteger for usize
[src]

impl PrintableInteger for i8
[src]

impl PrintableInteger for i16
[src]

impl PrintableInteger for i32
[src]

impl PrintableInteger for i64
[src]

impl PrintableInteger for isize
[src]

Implementors