Struct libreda_db::layout::prelude::IrregularRepetition[][src]

pub struct IrregularRepetition<T> where
    T: CoordinateType
{ /* fields omitted */ }

Describe a non-equispaced repetition by storing a list of offsets.

Implementations

impl<T> IrregularRepetition<T> where
    T: CoordinateType
[src]

pub fn new(offsets: Vec<Vector<T>, Global>) -> IrregularRepetition<T>[src]

Create a new irregular repetition from a list of offsets.

pub fn iter(&self) -> impl Iterator<Item = Vector<T>>[src]

Iterate over each offsets of this repetition.

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

Return the number of offsets in this repetition.

Trait Implementations

impl<T> Clone for IrregularRepetition<T> where
    T: Clone + CoordinateType
[src]

impl<T> Debug for IrregularRepetition<T> where
    T: Debug + CoordinateType
[src]

impl<T> Eq for IrregularRepetition<T> where
    T: Eq + CoordinateType
[src]

impl<T> Hash for IrregularRepetition<T> where
    T: Hash + CoordinateType
[src]

impl<T> PartialEq<IrregularRepetition<T>> for IrregularRepetition<T> where
    T: PartialEq<T> + CoordinateType
[src]

impl<T> StructuralEq for IrregularRepetition<T> where
    T: CoordinateType
[src]

impl<T> StructuralPartialEq for IrregularRepetition<T> where
    T: CoordinateType
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for IrregularRepetition<T> where
    T: RefUnwindSafe

impl<T> Send for IrregularRepetition<T> where
    T: Send

impl<T> Sync for IrregularRepetition<T> where
    T: Sync

impl<T> Unpin for IrregularRepetition<T> where
    T: Unpin

impl<T> UnwindSafe for IrregularRepetition<T> where
    T: 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> TextType for T where
    T: Clone + Eq + Debug + Hash
[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.