Struct libafl_bolts::rands::RomuDuoJrRand

source ·
pub struct RomuDuoJrRand { /* private fields */ }
Expand description

Implementations§

source§

impl RomuDuoJrRand

source

pub fn with_seed(seed: u64) -> Self

Creates a new RomuDuoJrRand with the given seed.

Trait Implementations§

source§

impl Clone for RomuDuoJrRand

source§

fn clone(&self) -> RomuDuoJrRand

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for RomuDuoJrRand

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for RomuDuoJrRand

A default RNG will usually produce a nondeterministic stream of random numbers. As we do not have any way to get random seeds for no_std, they have to be reproducible there. Use [$rand::with_seed] to generate a reproducible RNG.

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for RomuDuoJrRand

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Rand for RomuDuoJrRand

source§

fn set_seed(&mut self, seed: u64)

Sets the seed of this Rand
source§

fn next(&mut self) -> u64

Gets the next 64 bit value
source§

fn below(&mut self, upper_bound_excl: u64) -> u64

Gets a value below the given 64 bit val (exclusive)
source§

fn between(&mut self, lower_bound_incl: u64, upper_bound_incl: u64) -> u64

Gets a value between the given lower bound (inclusive) and upper bound (inclusive)
source§

fn choose<I, E, T>(&mut self, from: I) -> T
where I: IntoIterator<Item = T, IntoIter = E>, E: ExactSizeIterator + Iterator<Item = T>,

Choose an item at random from the given iterator, sampling uniformly. Read more
source§

impl RandomSeed for RomuDuoJrRand

source§

fn new() -> Self

Creates a rand instance, pre-seeded with the current time in nanoseconds.

source§

impl RngCore for RomuDuoJrRand

source§

fn next_u32(&mut self) -> u32

Return the next random u32. Read more
source§

fn next_u64(&mut self) -> u64

Return the next random u64. Read more
source§

fn fill_bytes(&mut self, dest: &mut [u8])

Fill dest with random data. Read more
source§

fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error>

Fill dest entirely with random data. Read more
source§

impl Serialize for RomuDuoJrRand

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Copy for RomuDuoJrRand

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Tail, T> Prepend<T> for Tail

§

type PreprendResult = Tail

The Resulting TupleList, of an Prepend::prepend() call, including the prepended entry.
source§

fn prepend(self, value: T) -> (T, <Tail as Prepend<T>>::PreprendResult)

Prepend a value to this tuple, returning a new tuple with prepended value.
source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> Ungil for T
where T: Send,