pub struct Pattern<M>(/* private fields */);Expand description
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§
Source§impl<M> IntoIterator for Pattern<M>
impl<M> IntoIterator for Pattern<M>
Source§impl<M: PartialOrd> PartialOrd for Pattern<M>
impl<M: PartialOrd> PartialOrd for Pattern<M>
impl<M: PartialEq> StructuralPartialEq for Pattern<M>
Auto Trait Implementations§
impl<M> Freeze for Pattern<M>where
M: Freeze,
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> UnsafeUnpin for Pattern<M>where
M: UnsafeUnpin,
impl<M> UnwindSafe for Pattern<M>where
M: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more