winter_utils

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.

Object Safety§

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§