[][src]Struct na::base::default_allocator::DefaultAllocator

pub struct DefaultAllocator;

An allocator based on GenericArray and VecStorage for statically-sized and dynamically-sized matrices respectively.

Trait Implementations

impl<N, R> Allocator<N, R, Dynamic> for DefaultAllocator where
    N: Scalar,
    R: DimName
[src]

type Buffer = VecStorage<N, R, Dynamic>

The type of buffer this allocator can instanciate.

impl<N, C> Allocator<N, Dynamic, C> for DefaultAllocator where
    C: Dim,
    N: Scalar
[src]

type Buffer = VecStorage<N, Dynamic, C>

The type of buffer this allocator can instanciate.

impl<N, R, C> Allocator<N, R, C> for DefaultAllocator where
    C: DimName,
    N: Scalar,
    R: DimName,
    <R as DimName>::Value: Mul<<C as DimName>::Value>,
    <<R as DimName>::Value as Mul<<C as DimName>::Value>>::Output: ArrayLength<N>, 
[src]

type Buffer = ArrayStorage<N, R, C>

The type of buffer this allocator can instanciate.

impl<N, R1, R2> SameShapeVectorAllocator<N, R1, R2> for DefaultAllocator where
    N: Scalar,
    R1: Dim,
    R2: Dim,
    DefaultAllocator: Allocator<N, R1, U1>,
    DefaultAllocator: Allocator<N, <ShapeConstraint as SameNumberOfRows<R1, R2>>::Representative, U1>,
    ShapeConstraint: SameNumberOfRows<R1, R2>, 
[src]

impl<N, CFrom, CTo> Reallocator<N, Dynamic, CFrom, Dynamic, CTo> for DefaultAllocator where
    CFrom: Dim,
    CTo: Dim,
    N: Scalar
[src]

impl<N, RFrom, CFrom, RTo, CTo> Reallocator<N, RFrom, CFrom, RTo, CTo> for DefaultAllocator where
    CFrom: Dim,
    CTo: DimName,
    N: Scalar,
    RFrom: Dim,
    RTo: DimName,
    DefaultAllocator: Allocator<N, RFrom, CFrom>,
    <RTo as DimName>::Value: Mul<<CTo as DimName>::Value>,
    <<RTo as DimName>::Value as Mul<<CTo as DimName>::Value>>::Output: ArrayLength<N>, 
[src]

impl<N, RFrom, CTo> Reallocator<N, RFrom, Dynamic, Dynamic, CTo> for DefaultAllocator where
    CTo: Dim,
    N: Scalar,
    RFrom: DimName
[src]

impl<N, RFrom, CFrom, RTo> Reallocator<N, RFrom, CFrom, RTo, Dynamic> for DefaultAllocator where
    CFrom: DimName,
    N: Scalar,
    RFrom: DimName,
    RTo: DimName,
    <RFrom as DimName>::Value: Mul<<CFrom as DimName>::Value>,
    <<RFrom as DimName>::Value as Mul<<CFrom as DimName>::Value>>::Output: ArrayLength<N>, 
[src]

impl<N, CFrom, RTo> Reallocator<N, Dynamic, CFrom, RTo, Dynamic> for DefaultAllocator where
    CFrom: Dim,
    N: Scalar,
    RTo: DimName
[src]

impl<N, RFrom, CFrom, CTo> Reallocator<N, RFrom, CFrom, Dynamic, CTo> for DefaultAllocator where
    CFrom: DimName,
    CTo: Dim,
    N: Scalar,
    RFrom: DimName,
    <RFrom as DimName>::Value: Mul<<CFrom as DimName>::Value>,
    <<RFrom as DimName>::Value as Mul<<CFrom as DimName>::Value>>::Output: ArrayLength<N>, 
[src]

impl<N, RFrom, RTo> Reallocator<N, RFrom, Dynamic, RTo, Dynamic> for DefaultAllocator where
    N: Scalar,
    RFrom: DimName,
    RTo: DimName
[src]

impl<N, R1, R2, C1, C2> SameShapeAllocator<N, R1, C1, R2, C2> for DefaultAllocator where
    C1: Dim,
    C2: Dim,
    N: Scalar,
    R1: Dim,
    R2: Dim,
    DefaultAllocator: Allocator<N, R1, C1>,
    DefaultAllocator: Allocator<N, <ShapeConstraint as SameNumberOfRows<R1, R2>>::Representative, <ShapeConstraint as SameNumberOfColumns<C1, C2>>::Representative>,
    ShapeConstraint: SameNumberOfRows<R1, R2>,
    ShapeConstraint: SameNumberOfColumns<C1, C2>, 
[src]

Auto Trait Implementations

Blanket Implementations

impl<V> IntoVec for V[src]

impl<V> IntoPnt for V[src]

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

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]

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 
[src]