Lsb0Array

Trait Lsb0Array 

Source
pub trait Lsb0Array: Common {
    // Required method
    fn lsb0_array(&self) -> Self::Array;
}

Required Methods§

Source

fn lsb0_array(&self) -> Self::Array

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 Lsb0Array for u8

Source§

fn lsb0_array(&self) -> [u8; 1]

Source§

impl Lsb0Array for u16

Source§

fn lsb0_array(&self) -> [u8; 2]

Source§

impl Lsb0Array for u32

Source§

fn lsb0_array(&self) -> [u8; 4]

Source§

impl Lsb0Array for u64

Source§

fn lsb0_array(&self) -> [u8; 8]

Source§

impl Lsb0Array for u128

Source§

fn lsb0_array(&self) -> [u8; 16]

Implementors§