[][src]Struct teia::complex::Complex

pub struct Complex<V, G> {
    pub basis: V,
    // some fields omitted
}

Fields

basis: V

Methods

impl<V, G> Complex<V, G> where
    G: ChainGenerator,
    V: IndexedSet<G>, 
[src]

pub fn new() -> Self[src]

pub fn with_prev<'b, W: IndexedSet<G>>(prev: &Complex<W, G>) -> Self[src]

pub fn push(&mut self, elem: G) -> Result<(), ComplexError> where
    V: for<'a> IndexedSetIters<'a, G>, 
[src]

pub fn push_unchecked(&mut self, elem: G)[src]

Important traits for Boundaries<'a, 'b, V, W, ChGen, FrIt>
pub fn boundaries<'a, FrIt>(&'a self) -> Boundaries<'a, 'a, V, V, G, FrIt>[src]

Important traits for Boundaries<'a, 'b, V, W, ChGen, FrIt>
pub fn boundaries_from<'a, 'b, FrIt, W>(
    &'a self,
    other: &'b Complex<W, G>
) -> Boundaries<'a, 'b, V, W, G, FrIt>
[src]

Trait Implementations

impl<V: Clone, G: Clone> Clone for Complex<V, G>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<V: Debug, G: Debug> Debug for Complex<V, G>[src]

Auto Trait Implementations

impl<V, G> Send for Complex<V, G> where
    V: Send

impl<V, G> Sync for Complex<V, G> where
    V: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]