Trait cluatoi::Atoi [] [src]

pub trait Atoi<T> {
    fn atoi<'a>(array: &'a [u8]) -> AtoiResult<T>;
fn atoi_end<'a>(array: &'a [u8], end: u8) -> AtoiResult<T>;
fn atoi_iter<'a>(iter: &'a mut Iter<u8>) -> AtoiResult<T>;
fn atoi_iter_end<'a>(iter: &'a mut Iter<u8>, end: u8) -> AtoiResult<T>; }

Parsing the byte sequence of the ascii characters and safely converting them to integers.

Required Methods

Array parsing

Array parsing and stopping on the 'X' character

Array parsing an array using an iterator

Array parsing an array using an iterator and stopping on the 'X' character

Implementations on Foreign Types

impl Atoi<Self> for u8
[src]

[src]

[src]

[src]

[src]

impl Atoi<Self> for u16
[src]

[src]

[src]

[src]

[src]

impl Atoi<Self> for u32
[src]

[src]

[src]

[src]

[src]

impl Atoi<Self> for u64
[src]

[src]

[src]

[src]

[src]

impl Atoi<Self> for usize
[src]

[src]

[src]

[src]

[src]

impl Atoi<Self> for i8
[src]

[src]

[src]

[src]

[src]

impl Atoi<Self> for i16
[src]

[src]

[src]

[src]

[src]

impl Atoi<Self> for i32
[src]

[src]

[src]

[src]

[src]

impl Atoi<Self> for i64
[src]

[src]

[src]

[src]

[src]

impl Atoi<Self> for isize
[src]

[src]

[src]

[src]

[src]

Implementors