Struct peroxide::traits::pointer::Redox

source ·
pub struct Redox<T: Vector> { /* private fields */ }

Trait Implementations§

source§

impl<T: Vector + FPVector> Add<f64> for Redox<T>
where <T as FPVector>::Scalar: Add<f64, Output = <T as FPVector>::Scalar>,

§

type Output = Redox<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: f64) -> Self::Output

Performs the + operation. Read more
source§

impl<T: Vector> Add for Redox<T>

§

type Output = Redox<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Redox<T>) -> Self::Output

Performs the + operation. Read more
source§

impl<T: Debug + Vector> Debug for Redox<T>

source§

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

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

impl<T: Vector> Deref for Redox<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T: Vector + FPVector> Div<f64> for Redox<T>
where <T as FPVector>::Scalar: Div<f64, Output = <T as FPVector>::Scalar>,

§

type Output = Redox<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: f64) -> Self::Output

Performs the / operation. Read more
source§

impl<T: Vector + FPVector> Div for Redox<T>
where <T as FPVector>::Scalar: Div<Output = <T as FPVector>::Scalar>,

§

type Output = Redox<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Redox<T>) -> Self::Output

Performs the / operation. Read more
source§

impl Mul<Redox<Vec<f64>>> for &Matrix

§

type Output = Redox<Vec<f64>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Redox<Vec<f64>>) -> Self::Output

Performs the * operation. Read more
source§

impl Mul<Redox<Vec<f64>>> for &SPMatrix

§

type Output = Redox<Vec<f64>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Redox<Vec<f64>>) -> Self::Output

Performs the * operation. Read more
source§

impl Mul<Redox<Vec<f64>>> for Matrix

§

type Output = Redox<Vec<f64>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Redox<Vec<f64>>) -> Self::Output

Performs the * operation. Read more
source§

impl Mul<Redox<Vec<f64>>> for SPMatrix

Matrix multiplication with Redox

§

type Output = Redox<Vec<f64>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Redox<Vec<f64>>) -> Self::Output

Performs the * operation. Read more
source§

impl<T: Vector + FPVector> Mul<f64> for Redox<T>
where <T as FPVector>::Scalar: Mul<f64, Output = <T as FPVector>::Scalar>,

§

type Output = Redox<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: f64) -> Self::Output

Performs the * operation. Read more
source§

impl<T: Vector + FPVector> Mul for Redox<T>
where <T as FPVector>::Scalar: Mul<Output = <T as FPVector>::Scalar>,

§

type Output = Redox<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Redox<T>) -> Self::Output

Performs the * operation. Read more
source§

impl RedoxCommon for Redox<Vec<AD>>

§

type ToRedox = Vec<AD>

source§

fn from_vec(vec: Self::ToRedox) -> Self

source§

fn red(self) -> Self::ToRedox

source§

impl RedoxCommon for Redox<Vec<f64>>

§

type ToRedox = Vec<f64>

source§

fn from_vec(vec: Self::ToRedox) -> Self

source§

fn red(self) -> Self::ToRedox

source§

impl<T: Vector + FPVector> Sub<f64> for Redox<T>
where <T as FPVector>::Scalar: Sub<f64, Output = <T as FPVector>::Scalar>,

§

type Output = Redox<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: f64) -> Self::Output

Performs the - operation. Read more
source§

impl<T: Vector + FPVector> Sub for Redox<T>
where <T as FPVector>::Scalar: Sub<Output = <T as FPVector>::Scalar>,

§

type Output = Redox<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Redox<T>) -> Self::Output

Performs the - operation. Read more

Auto Trait Implementations§

§

impl<T> Freeze for Redox<T>

§

impl<T> RefUnwindSafe for Redox<T>
where T: RefUnwindSafe,

§

impl<T> Send for Redox<T>
where T: Send,

§

impl<T> Sync for Redox<T>
where T: Sync,

§

impl<T> Unpin for Redox<T>

§

impl<T> UnwindSafe for Redox<T>
where T: 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> 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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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