Struct random::Sequence[][src]

pub struct Sequence<'l, S: ?Sized, V> where
    S: Source + 'l,
    V: Value + 'l, 
{ /* fields omitted */ }

A random sequence.

Trait Implementations

impl<'l, S, V> From<&'l mut S> for Sequence<'l, S, V> where
    S: Source,
    V: Value
[src]

impl<'l, S, V> Iterator for Sequence<'l, S, V> where
    S: Source,
    V: Value
[src]

type Item = V

The type of the elements being iterated over.

Auto Trait Implementations

impl<'l, S: ?Sized, V> RefUnwindSafe for Sequence<'l, S, V> where
    S: RefUnwindSafe,
    V: RefUnwindSafe

impl<'l, S: ?Sized, V> Send for Sequence<'l, S, V> where
    S: Send,
    V: Sync

impl<'l, S: ?Sized, V> Sync for Sequence<'l, S, V> where
    S: Sync,
    V: Sync

impl<'l, S: ?Sized, V> Unpin for Sequence<'l, S, V>

impl<'l, S, V> !UnwindSafe for Sequence<'l, S, V>

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.