[src]

Trait std::ascii::IntoBytes

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

Trait to convert to an owned byte array by consuming self

Required Methods

fn into_bytes(self) -> ~[u8]

Converts to an owned byte array by consuming self

Implementors