Struct nalgebra::base::constraint::ShapeConstraint
source · [−]pub struct ShapeConstraint;
Expand description
A type used in where
clauses for enforcing constraints.
Trait Implementations
sourceimpl<D: Dim> DimEq<D, D> for ShapeConstraint
impl<D: Dim> DimEq<D, D> for ShapeConstraint
type Representative = D
type Representative = D
This is either equal to D1
or D2
, always choosing the one (if any) which is a type-level
constant. Read more
sourceimpl<D: DimName> DimEq<D, Dynamic> for ShapeConstraint
impl<D: DimName> DimEq<D, Dynamic> for ShapeConstraint
type Representative = D
type Representative = D
This is either equal to D1
or D2
, always choosing the one (if any) which is a type-level
constant. Read more
sourceimpl<D: DimName> DimEq<Dynamic, D> for ShapeConstraint
impl<D: DimName> DimEq<Dynamic, D> for ShapeConstraint
type Representative = D
type Representative = D
This is either equal to D1
or D2
, always choosing the one (if any) which is a type-level
constant. Read more
sourceimpl<D: Dim> SameDimension<D, D> for ShapeConstraint
impl<D: Dim> SameDimension<D, D> for ShapeConstraint
type Representative = D
type Representative = D
This is either equal to D1
or D2
, always choosing the one (if any) which is a type-level
constant. Read more
sourceimpl<D: DimName> SameDimension<D, Dynamic> for ShapeConstraint
impl<D: DimName> SameDimension<D, Dynamic> for ShapeConstraint
type Representative = D
type Representative = D
This is either equal to D1
or D2
, always choosing the one (if any) which is a type-level
constant. Read more
sourceimpl<D: DimName> SameDimension<Dynamic, D> for ShapeConstraint
impl<D: DimName> SameDimension<Dynamic, D> for ShapeConstraint
type Representative = D
type Representative = D
This is either equal to D1
or D2
, always choosing the one (if any) which is a type-level
constant. Read more
sourceimpl<D: Dim> SameNumberOfColumns<D, D> for ShapeConstraint
impl<D: Dim> SameNumberOfColumns<D, D> for ShapeConstraint
type Representative = D
type Representative = D
This is either equal to D1
or D2
, always choosing the one (if any) which is a type-level
constant. Read more
sourceimpl<D: DimName> SameNumberOfColumns<D, Dynamic> for ShapeConstraint
impl<D: DimName> SameNumberOfColumns<D, Dynamic> for ShapeConstraint
type Representative = D
type Representative = D
This is either equal to D1
or D2
, always choosing the one (if any) which is a type-level
constant. Read more
sourceimpl<D: DimName> SameNumberOfColumns<Dynamic, D> for ShapeConstraint
impl<D: DimName> SameNumberOfColumns<Dynamic, D> for ShapeConstraint
type Representative = D
type Representative = D
This is either equal to D1
or D2
, always choosing the one (if any) which is a type-level
constant. Read more
sourceimpl<D: Dim> SameNumberOfRows<D, D> for ShapeConstraint
impl<D: Dim> SameNumberOfRows<D, D> for ShapeConstraint
type Representative = D
type Representative = D
This is either equal to D1
or D2
, always choosing the one (if any) which is a type-level
constant. Read more
sourceimpl<D: DimName> SameNumberOfRows<D, Dynamic> for ShapeConstraint
impl<D: DimName> SameNumberOfRows<D, Dynamic> for ShapeConstraint
type Representative = D
type Representative = D
This is either equal to D1
or D2
, always choosing the one (if any) which is a type-level
constant. Read more
sourceimpl<D: DimName> SameNumberOfRows<Dynamic, D> for ShapeConstraint
impl<D: DimName> SameNumberOfRows<Dynamic, D> for ShapeConstraint
type Representative = D
type Representative = D
This is either equal to D1
or D2
, always choosing the one (if any) which is a type-level
constant. Read more
impl<R1: Dim, C1: Dim, R2: Dim, C2: Dim> AreMultipliable<R1, C1, R2, C2> for ShapeConstraint where
ShapeConstraint: DimEq<C1, R2>,
Auto Trait Implementations
impl RefUnwindSafe for ShapeConstraint
impl Send for ShapeConstraint
impl Sync for ShapeConstraint
impl Unpin for ShapeConstraint
impl UnwindSafe for ShapeConstraint
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
sourcepub fn to_subset(&self) -> Option<SS>
pub fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct self
from the equivalent element of its
superset. Read more
sourcepub fn is_in_subset(&self) -> bool
pub fn is_in_subset(&self) -> bool
Checks if self
is actually part of its subset T
(and can be converted to it).
sourcepub fn to_subset_unchecked(&self) -> SS
pub fn to_subset_unchecked(&self) -> SS
Use with care! Same as self.to_subset
but without any property checks. Always succeeds.
sourcepub fn from_subset(element: &SS) -> SP
pub fn from_subset(element: &SS) -> SP
The inclusion map: converts self
to the equivalent element of its superset.