Trait Randomizable

Source
pub trait Randomizable: Sized {
    const VALUE_SIZE: usize;

    // Required method
    fn from_random_bytes(source: &[u8]) -> Option<Self>;
}
Expand description

Defines how Self can be read from a sequence of random bytes.

Required Associated Constants§

Source

const VALUE_SIZE: usize

Size of Self in bytes.

This is used to determine how many bytes should be passed to the from_random_bytes() function.

Required Methods§

Source

fn from_random_bytes(source: &[u8]) -> Option<Self>

Returns Self if the set of bytes forms a valid value, otherwise returns None.

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

Source§

const VALUE_SIZE: usize = 1usize

Source§

fn from_random_bytes(source: &[u8]) -> Option<Self>

Source§

impl Randomizable for u16

Source§

const VALUE_SIZE: usize = 2usize

Source§

fn from_random_bytes(source: &[u8]) -> Option<Self>

Source§

impl Randomizable for u32

Source§

const VALUE_SIZE: usize = 4usize

Source§

fn from_random_bytes(source: &[u8]) -> Option<Self>

Source§

impl Randomizable for u64

Source§

const VALUE_SIZE: usize = 8usize

Source§

fn from_random_bytes(source: &[u8]) -> Option<Self>

Source§

impl Randomizable for u128

Source§

const VALUE_SIZE: usize = 16usize

Source§

fn from_random_bytes(source: &[u8]) -> Option<Self>

Implementors§