Trait std::ascii::ToBytesConsume

pub trait ToBytesConsume {
    fn into_bytes(self) -> ~[u8];
}

Trait to convert to a owned byte array by consuming self

Required Methods

fn into_bytes(self) -> ~[u8]

Converts to a owned byte array by consuming self

Implementors