Struct au::polynomial_matrix::MatrixOfPoly[][src]

pub struct MatrixOfPoly<T> { /* fields omitted */ }

Polynomial matrix object

Contains the matrix of polynomials

P(x) = [[P1, P2], [P3, P4]]

Trait Implementations

impl<T: Debug> Debug for MatrixOfPoly<T>[src]

impl<T: Display + PartialOrd + Zero> Display for MatrixOfPoly<T>[src]

Implementation of matrix of polynomials printing

impl<T> Index<[usize; 2]> for MatrixOfPoly<T>[src]

Implement read only indexing of the matrix of polynomials.

Panics

Panics for out of bounds access.

type Output = Poly<T>

The returned type after indexing.

impl<T> IndexMut<[usize; 2]> for MatrixOfPoly<T>[src]

Implement mutable indexing of the matrix of polynomials.

Panics

Panics for out of bounds access.

Auto Trait Implementations

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

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

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

impl<T> Unpin for MatrixOfPoly<T>

impl<T> UnwindSafe for MatrixOfPoly<T> where
    T: RefUnwindSafe

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> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToString for T where
    T: Display + ?Sized
[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>,