Trait numtoa::NumToA [] [src]

pub trait NumToA<T> {
    fn numtoa(self, base: T, string: &mut [u8]) -> usize;
}

Converts a number into a string representation, storing the conversion into a mutable byte slice.

Required Methods

Given a base for encoding and a mutable byte slice, write the number into the byte slice and return the amount of bytes that were written.

Panics

If the supplied buffer is smaller than the number of bytes needed to write the integer, this will panic.

Implementors