Skip to main content

Scale

Struct Scale 

Source
pub struct Scale<E>(pub E)
where
    E: Scalar;
Expand description

A wrapper for scalar values used when scaling vectors and matrices.

Tuple Fields§

§0: E

Implementations§

Source§

impl<E> Scale<E>
where E: Scalar,

Source

pub fn value(self) -> E

Get the underlying scalar value.

Trait Implementations§

Source§

impl<E> Add for Scale<E>
where E: Scalar,

Source§

type Output = Scale<E>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Scale<E>) -> <Scale<E> as Add>::Output

Performs the + operation. Read more
Source§

impl<E> AddAssign for Scale<E>
where E: Scalar,

Source§

fn add_assign(&mut self, rhs: Scale<E>)

Performs the += operation. Read more
Source§

impl<E> Clone for Scale<E>
where E: Clone + Scalar,

Source§

fn clone(&self) -> Scale<E>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<E> Copy for Scale<E>
where E: Copy + Scalar,

Source§

impl<E> Debug for Scale<E>
where E: Debug + Scalar,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<'a, T> Div<Scale<T>> for FaerVec<T>
where T: FaerScalar,

Source§

type Output = FaerVec<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Scale<T>) -> <FaerVec<T> as Div<Scale<T>>>::Output

Performs the / operation. Read more
Source§

impl<'a, T> Div<Scale<T>> for NalgebraVec<T>
where T: NalgebraScalar,

Source§

type Output = NalgebraVec<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Scale<T>) -> <NalgebraVec<T> as Div<Scale<T>>>::Output

Performs the / operation. Read more
Source§

impl<T> From<Scale<T>> for Scale<T>
where T: FaerScalar,

Source§

fn from(s: Scale<T>) -> Scale<T>

Converts to this type from the input type.
Source§

impl<T> From<T> for Scale<T>
where T: Scalar,

Source§

fn from(s: T) -> Scale<T>

Converts to this type from the input type.
Source§

impl<E> Mul for Scale<E>
where E: Scalar,

Source§

type Output = Scale<E>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<E>) -> <Scale<E> as Mul>::Output

Performs the * operation. Read more
Source§

impl<'a, T> Mul<Scale<T>> for NalgebraMatRef<'_, T>
where T: NalgebraScalar,

Source§

type Output = NalgebraMat<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <NalgebraMatRef<'_, T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<'a, T> Mul<Scale<T>> for NalgebraMat<T>
where T: NalgebraScalar,

Source§

type Output = NalgebraMat<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <NalgebraMat<T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<'a, T> Mul<Scale<T>> for &NalgebraMat<T>
where T: NalgebraScalar,

Source§

type Output = NalgebraMat<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <&NalgebraMat<T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<'a, T> Mul<Scale<T>> for FaerMatRef<'_, T>
where T: FaerScalar,

Source§

type Output = FaerMat<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <FaerMatRef<'_, T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<'a, T> Mul<Scale<T>> for FaerMat<T>
where T: FaerScalar,

Source§

type Output = FaerMat<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <FaerMat<T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<'a, T> Mul<Scale<T>> for &FaerMat<T>
where T: FaerScalar,

Source§

type Output = FaerMat<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <&FaerMat<T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<'a, T> Mul<Scale<T>> for FaerSparseMat<T>
where T: FaerScalar,

Source§

type Output = FaerSparseMat<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <FaerSparseMat<T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<'a, T> Mul<Scale<T>> for &FaerSparseMat<T>
where T: FaerScalar,

Source§

type Output = FaerSparseMat<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <&FaerSparseMat<T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Scale<T>> for FaerVec<T>
where T: FaerScalar,

Source§

type Output = FaerVec<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <FaerVec<T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Scale<T>> for &FaerVec<T>
where T: FaerScalar,

Source§

type Output = FaerVec<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <&FaerVec<T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Scale<T>> for FaerVecRef<'_, T>
where T: FaerScalar,

Source§

type Output = FaerVec<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <FaerVecRef<'_, T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Scale<T>> for FaerVecMut<'_, T>
where T: FaerScalar,

Source§

type Output = FaerVec<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <FaerVecMut<'_, T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Scale<T>> for NalgebraVec<T>
where T: NalgebraScalar,

Source§

type Output = NalgebraVec<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <NalgebraVec<T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Scale<T>> for &NalgebraVec<T>
where T: NalgebraScalar,

Source§

type Output = NalgebraVec<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <&NalgebraVec<T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Scale<T>> for NalgebraVecRef<'_, T>
where T: NalgebraScalar,

Source§

type Output = NalgebraVec<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <NalgebraVecRef<'_, T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Scale<T>> for NalgebraVecMut<'_, T>
where T: NalgebraScalar,

Source§

type Output = NalgebraVec<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> <NalgebraVecMut<'_, T> as Mul<Scale<T>>>::Output

Performs the * operation. Read more
Source§

impl<V, E> Mul<V> for Scale<E>
where V: VectorView<'static, T = E>, E: Scalar,

Source§

type Output = <V as VectorView<'static>>::Owned

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: V) -> <Scale<E> as Mul<V>>::Output

Performs the * operation. Read more
Source§

impl<E> MulAssign for Scale<E>
where E: Scalar,

Source§

fn mul_assign(&mut self, rhs: Scale<E>)

Performs the *= operation. Read more
Source§

impl<T> MulAssign<Scale<T>> for NalgebraMatMut<'_, T>
where T: NalgebraScalar,

Source§

fn mul_assign(&mut self, rhs: Scale<T>)

Performs the *= operation. Read more
Source§

impl<T> MulAssign<Scale<T>> for FaerMatMut<'_, T>
where T: FaerScalar,

Source§

fn mul_assign(&mut self, rhs: Scale<T>)

Performs the *= operation. Read more
Source§

impl<'a, T> MulAssign<Scale<T>> for FaerVecMut<'a, T>
where T: FaerScalar,

Source§

fn mul_assign(&mut self, rhs: Scale<T>)

Performs the *= operation. Read more
Source§

impl<'a, T> MulAssign<Scale<T>> for FaerVec<T>
where T: FaerScalar,

Source§

fn mul_assign(&mut self, rhs: Scale<T>)

Performs the *= operation. Read more
Source§

impl<'a, T> MulAssign<Scale<T>> for NalgebraVecMut<'a, T>
where T: NalgebraScalar,

Source§

fn mul_assign(&mut self, rhs: Scale<T>)

Performs the *= operation. Read more
Source§

impl<'a, T> MulAssign<Scale<T>> for NalgebraVec<T>
where T: NalgebraScalar,

Source§

fn mul_assign(&mut self, rhs: Scale<T>)

Performs the *= operation. Read more
Source§

impl<E> PartialEq for Scale<E>
where E: Scalar,

Source§

fn eq(&self, rhs: &Scale<E>) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl<E> Sub for Scale<E>
where E: Scalar,

Source§

type Output = Scale<E>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Scale<E>) -> <Scale<E> as Sub>::Output

Performs the - operation. Read more
Source§

impl<E> SubAssign for Scale<E>
where E: Scalar,

Source§

fn sub_assign(&mut self, rhs: Scale<E>)

Performs the -= operation. Read more

Auto Trait Implementations§

§

impl<E> Freeze for Scale<E>
where E: Freeze,

§

impl<E> RefUnwindSafe for Scale<E>
where E: RefUnwindSafe,

§

impl<E> Send for Scale<E>

§

impl<E> Sync for Scale<E>

§

impl<E> Unpin for Scale<E>
where E: Unpin,

§

impl<E> UnsafeUnpin for Scale<E>
where E: UnsafeUnpin,

§

impl<E> UnwindSafe for Scale<E>
where E: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Boilerplate for T
where T: Copy + Send + Sync + Debug + PartialEq + 'static,

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> ByRef<T> for T

Source§

fn by_ref(&self) -> &T

Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T, Right> ClosedAdd<Right> for T
where T: Add<Right, Output = T> + AddAssign<Right>,

Source§

impl<T, Right> ClosedAddAssign<Right> for T
where T: ClosedAdd<Right> + AddAssign<Right>,

Source§

impl<T, Right> ClosedMul<Right> for T
where T: Mul<Right, Output = T> + MulAssign<Right>,

Source§

impl<T, Right> ClosedMulAssign<Right> for T
where T: ClosedMul<Right> + MulAssign<Right>,

Source§

impl<T, Right> ClosedSub<Right> for T
where T: Sub<Right, Output = T> + SubAssign<Right>,

Source§

impl<T, Right> ClosedSubAssign<Right> for T
where T: ClosedSub<Right> + SubAssign<Right>,

Source§

impl<T> DistributionExt for T
where T: ?Sized,

Source§

fn rand<T>(&self, rng: &mut (impl Rng + ?Sized)) -> T
where Self: Distribution<T>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Imply<T> for U
where T: ?Sized, U: ?Sized,

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,

Source§

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

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V