[][src]Struct lain::types::Constraints

pub struct Constraints<T: Bounded + Debug> {
    pub min: Option<T>,
    pub max: Option<T>,
    pub weighted: Weighted,
    pub max_size: Option<usize>,
    pub base_object_size_accounted_for: bool,
}

Data structure holding constraints that the NewFuzzed::new_fuzzed or Mutatable::mutate methods should try to respect.

Fields

min: Option<T>

The contextual "min" bound

max: Option<T>

The contextual "max" bound (not inclusive)

weighted: Weighted

Which direction to weigh the RNG towards

max_size: Option<usize>

The space allotted for dynamically-sized objects

base_object_size_accounted_for: bool

Methods

impl<T: Bounded + Debug> Constraints<T>[src]

pub fn new() -> Constraints<T>[src]

pub fn min<'a>(&'a mut self, min: T) -> &'a mut Constraints<T>[src]

pub fn max<'a>(&'a mut self, max: T) -> &'a mut Constraints<T>[src]

pub fn weighted<'a>(&'a mut self, weighted: Weighted) -> &'a mut Constraints<T>[src]

pub fn max_size<'a>(&'a mut self, max_size: usize) -> &'a mut Constraints<T>[src]

pub fn account_for_base_object_size<'a, U: SerializedSize>(
    &'a mut self
) -> &'a mut Constraints<T>
[src]

pub fn set_base_size_accounted_for<'a>(&'a mut self) -> &'a mut Constraints<T>[src]

Trait Implementations

impl<T: Clone + Bounded + Debug> Clone for Constraints<T>[src]

impl<T: Debug + Bounded> Debug for Constraints<T>[src]

impl<T: Default + Bounded + Debug> Default for Constraints<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Constraints<T> where
    T: RefUnwindSafe

impl<T> Send for Constraints<T> where
    T: Send

impl<T> Sync for Constraints<T> where
    T: Sync

impl<T> Unpin for Constraints<T> where
    T: Unpin

impl<T> UnwindSafe for Constraints<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Fixup for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> VariableSizeObject for T[src]