lexical_util::iterator

Trait AsBytes

Source
pub trait AsBytes<'a> {
    // Required method
    fn bytes<const FORMAT: u128>(&'a self) -> Bytes<'a, FORMAT>;
}
Expand description

Trait to simplify creation of a Bytes object.

Required Methods§

Source

fn bytes<const FORMAT: u128>(&'a self) -> Bytes<'a, FORMAT>

Create Bytes from object.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<'a> AsBytes<'a> for [u8]

Source§

fn bytes<const FORMAT: u128>(&'a self) -> Bytes<'a, FORMAT>

Implementors§