Trait std::ascii::IntoBytes[src]

pub trait IntoBytes {
    fn into_bytes(self) -> Vec<u8>;
}

Trait to convert to an owned byte vector by consuming self

Required Methods

fn into_bytes(self) -> Vec<u8>

Converts to an owned byte vector by consuming self

Implementors