[][src]Struct ascesis::FiringSequence

pub struct FiringSequence { /* fields omitted */ }

Methods

impl FiringSequence[src]

pub fn new() -> FiringSequence[src]

pub fn is_empty(&self) -> bool[src]

pub fn len(&self) -> usize[src]

pub fn push(&mut self, fc_id: usize)[src]

pub fn first(&self) -> Option<usize>[src]

pub fn get(&self, pos: usize) -> Option<usize>[src]

pub fn get_random<R>(&self, rng: &mut R) -> Option<usize> where
    R: RngCore
[src]

pub fn iter<'b, 'a>(&'a self, firing_set: &'b FiringSet) -> FiringIter<'b> where
    'a: 'b, 
[src]

pub fn par_iter<'b, 'a>(
    &'a self,
    firing_set: &'b FiringSet
) -> FiringParIter<'b> where
    'a: 'b, 
[src]

Trait Implementations

impl Debug for FiringSequence[src]

impl Default for FiringSequence[src]

Auto Trait Implementations

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<Reference, Outer, OuterFieldType, Inner> HasPart<Nested<Outer, Inner>> for Reference where
    Inner: Part,
    Outer: Part<PartType = Field<OuterFieldType>>,
    OuterFieldType: HasPart<Inner, RawTarget = OuterFieldType> + PartialRefTarget + ?Sized,
    Reference: HasPart<Outer> + ?Sized

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.

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