[][src]Struct bolero_generator::alloc_generators::BTreeSetGenerator

pub struct BTreeSetGenerator<V, L> { /* fields omitted */ }

Implementations

impl<V: ValueGenerator, L> BTreeSetGenerator<V, L>[src]

pub fn values<Gen: ValueGenerator<Output = V::Output>>(
    self,
    values: Gen
) -> BTreeSetGenerator<Gen, L>
[src]

pub fn map_values<Gen: ValueGenerator<Output = V::Output>, F: Fn(V) -> Gen>(
    self,
    map: F
) -> BTreeSetGenerator<Gen, L>
[src]

pub fn len<Gen: ValueGenerator<Output = Len>, Len: Into<usize>>(
    self,
    len: Gen
) -> BTreeSetGenerator<V, Gen>
[src]

pub fn map_len<Gen: ValueGenerator<Output = Len>, F: Fn(L) -> Gen, Len: Into<usize>>(
    self,
    map: F
) -> BTreeSetGenerator<V, Gen>
[src]

Trait Implementations

impl<V: ValueGenerator, L: ValueGenerator<Output = Len>, Len: Into<usize>> ValueGenerator for BTreeSetGenerator<V, L> where
    V::Output: Sized + Ord
[src]

type Output = BTreeSet<V::Output>

Auto Trait Implementations

impl<V, L> RefUnwindSafe for BTreeSetGenerator<V, L> where
    L: RefUnwindSafe,
    V: RefUnwindSafe

impl<V, L> Send for BTreeSetGenerator<V, L> where
    L: Send,
    V: Send

impl<V, L> Sync for BTreeSetGenerator<V, L> where
    L: Sync,
    V: Sync

impl<V, L> Unpin for BTreeSetGenerator<V, L> where
    L: Unpin,
    V: Unpin

impl<V, L> UnwindSafe for BTreeSetGenerator<V, L> where
    L: UnwindSafe,
    V: 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> From<T> for T[src]

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

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.