Struct libreda_db::layout::prelude::IrregularRepetition
source · [−]pub struct IrregularRepetition<T> where
T: CoordinateType, {
offsets: Vec<Vector<T>, Global>,
}
Expand description
Describe a non-equispaced repetition by storing a list of offsets.
Fields
offsets: Vec<Vector<T>, Global>
Offset vectors of the repetition.
Implementations
sourceimpl<T> IrregularRepetition<T> where
T: CoordinateType,
impl<T> IrregularRepetition<T> where
T: CoordinateType,
Trait Implementations
sourceimpl<T> Clone for IrregularRepetition<T> where
T: Clone + CoordinateType,
impl<T> Clone for IrregularRepetition<T> where
T: Clone + CoordinateType,
sourcefn clone(&self) -> IrregularRepetition<T>
fn clone(&self) -> IrregularRepetition<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T> Debug for IrregularRepetition<T> where
T: Debug + CoordinateType,
impl<T> Debug for IrregularRepetition<T> where
T: Debug + CoordinateType,
sourceimpl<'de, T> Deserialize<'de> for IrregularRepetition<T> where
T: CoordinateType + Deserialize<'de>,
impl<'de, T> Deserialize<'de> for IrregularRepetition<T> where
T: CoordinateType + Deserialize<'de>,
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<IrregularRepetition<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<IrregularRepetition<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<T> Hash for IrregularRepetition<T> where
T: Hash + CoordinateType,
impl<T> Hash for IrregularRepetition<T> where
T: Hash + CoordinateType,
sourceimpl<T> PartialEq<IrregularRepetition<T>> for IrregularRepetition<T> where
T: PartialEq<T> + CoordinateType,
impl<T> PartialEq<IrregularRepetition<T>> for IrregularRepetition<T> where
T: PartialEq<T> + CoordinateType,
sourcefn eq(&self, other: &IrregularRepetition<T>) -> bool
fn eq(&self, other: &IrregularRepetition<T>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &IrregularRepetition<T>) -> bool
fn ne(&self, other: &IrregularRepetition<T>) -> bool
This method tests for !=
.
sourceimpl<T> Serialize for IrregularRepetition<T> where
T: CoordinateType + Serialize,
impl<T> Serialize for IrregularRepetition<T> where
T: CoordinateType + Serialize,
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl<T> Eq for IrregularRepetition<T> where
T: Eq + CoordinateType,
impl<T> StructuralEq for IrregularRepetition<T> where
T: CoordinateType,
impl<T> StructuralPartialEq for IrregularRepetition<T> where
T: CoordinateType,
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more