Struct frustool::functions::vector::Vectors[][src]

pub struct Vectors { /* fields omitted */ }

Implementations

impl Vectors[src]

pub fn new(
    input_vector1: Vec<f64>,
    input_vector2: Vec<f64>
) -> Result<Self, Error>
[src]

pub fn add(&self) -> Vec<f64>[src]

Add - Vector arithmetic addition

pub fn sub(&self) -> Vec<f64>[src]

Subtraction - Vector arithmetic subtraction

pub fn div(&self) -> Vec<f64>[src]

Divide - Vector arithmetic division

pub fn mul(&self) -> Vec<f64>[src]

Muliplication - Vector arithmetic multiplication

Auto Trait Implementations

impl RefUnwindSafe for Vectors

impl Send for Vectors

impl Sync for Vectors

impl Unpin for Vectors

impl UnwindSafe for Vectors

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