Struct sorceress::pattern::Pattern[][src]

pub struct Pattern<M>(_);

A collection of events with timing information.

Patterns can be created using the sequence and parallel functions. Patterns can be turned into flat sequences of events using Pattern::into_iter. See the module level documentation for more.

Trait Implementations

impl<M: Clone> Clone for Pattern<M>[src]

impl<M: Debug> Debug for Pattern<M>[src]

impl<M> IntoIterator for Pattern<M>[src]

type Item = Event<M>

The type of the elements being iterated over.

type IntoIter = IntoIter<M>

Which kind of iterator are we turning this into?

impl<M: PartialEq> PartialEq<Pattern<M>> for Pattern<M>[src]

impl<M: PartialOrd> PartialOrd<Pattern<M>> for Pattern<M>[src]

impl<M> StructuralPartialEq for Pattern<M>[src]

Auto Trait Implementations

impl<M> RefUnwindSafe for Pattern<M> where
    M: RefUnwindSafe

impl<M> Send for Pattern<M> where
    M: Send

impl<M> Sync for Pattern<M> where
    M: Sync

impl<M> Unpin for Pattern<M> where
    M: Unpin

impl<M> UnwindSafe for Pattern<M> where
    M: 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> 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.