[−][src]Struct cgmath::Vector1
A 1-dimensional vector.
This type is marked as #[repr(C)]
.
Fields
x: S
The x component of the vector.
Methods
impl<S> Vector1<S>
[src]
pub const fn new(x: S) -> Vector1<S>
[src]
Construct a new vector, using the provided values.
pub fn map<U, F>(self, f: F) -> Vector1<U> where
F: FnMut(S) -> U,
[src]
F: FnMut(S) -> U,
Perform the given operation on each field in the vector, returning a new point constructed from the operations.
impl<S: NumCast + Copy> Vector1<S>
[src]
impl<S: BaseNum> Vector1<S>
[src]
Trait Implementations
impl<S: Copy> Array for Vector1<S>
[src]
type Element = S
fn len() -> usize
[src]
fn from_value(scalar: S) -> Vector1<S>
[src]
fn sum(self) -> S where
S: Add<Output = S>,
[src]
S: Add<Output = S>,
fn product(self) -> S where
S: Mul<Output = S>,
[src]
S: Mul<Output = S>,
fn is_finite(&self) -> bool where
S: BaseFloat,
[src]
S: BaseFloat,
fn as_ptr(&self) -> *const Self::Element
[src]
fn as_mut_ptr(&mut self) -> *mut Self::Element
[src]
fn swap_elements(&mut self, i: usize, j: usize)
[src]
impl<S: BaseNum> ElementWise<Vector1<S>> for Vector1<S>
[src]
fn add_element_wise(self, rhs: Vector1<S>) -> Vector1<S>
[src]
fn sub_element_wise(self, rhs: Vector1<S>) -> Vector1<S>
[src]
fn mul_element_wise(self, rhs: Vector1<S>) -> Vector1<S>
[src]
fn div_element_wise(self, rhs: Vector1<S>) -> Vector1<S>
[src]
fn rem_element_wise(self, rhs: Vector1<S>) -> Vector1<S>
[src]
fn add_assign_element_wise(&mut self, rhs: Vector1<S>)
[src]
fn sub_assign_element_wise(&mut self, rhs: Vector1<S>)
[src]
fn mul_assign_element_wise(&mut self, rhs: Vector1<S>)
[src]
fn div_assign_element_wise(&mut self, rhs: Vector1<S>)
[src]
fn rem_assign_element_wise(&mut self, rhs: Vector1<S>)
[src]
impl<S: BaseNum> ElementWise<S> for Vector1<S>
[src]
fn add_element_wise(self, rhs: S) -> Vector1<S>
[src]
fn sub_element_wise(self, rhs: S) -> Vector1<S>
[src]
fn mul_element_wise(self, rhs: S) -> Vector1<S>
[src]
fn div_element_wise(self, rhs: S) -> Vector1<S>
[src]
fn rem_element_wise(self, rhs: S) -> Vector1<S>
[src]
fn add_assign_element_wise(&mut self, rhs: S)
[src]
fn sub_assign_element_wise(&mut self, rhs: S)
[src]
fn mul_assign_element_wise(&mut self, rhs: S)
[src]
fn div_assign_element_wise(&mut self, rhs: S)
[src]
fn rem_assign_element_wise(&mut self, rhs: S)
[src]
impl<S: BaseNum> VectorSpace for Vector1<S>
[src]
impl<S: BaseFloat> MetricSpace for Vector1<S>
[src]
type Metric = S
The metric to be returned by the distance
function.
fn distance2(self, other: Self) -> S
[src]
fn distance(self, other: Self) -> Self::Metric
[src]
impl<S: BaseFloat> InnerSpace for Vector1<S>
[src]
fn dot(self, other: Vector1<S>) -> S
[src]
fn is_perpendicular(self, other: Self) -> bool
[src]
fn magnitude2(self) -> Self::Scalar
[src]
fn magnitude(self) -> Self::Scalar
[src]
fn angle(self, other: Self) -> Rad<Self::Scalar>
[src]
fn normalize(self) -> Self
[src]
fn normalize_to(self, magnitude: Self::Scalar) -> Self
[src]
fn project_on(self, other: Self) -> Self
[src]
impl<S> Into<[S; 1]> for Vector1<S>
[src]
impl<S> Into<(S,)> for Vector1<S>
[src]
impl<S: Eq> Eq for Vector1<S>
[src]
impl<S> AsMut<[S; 1]> for Vector1<S>
[src]
impl<S> AsMut<(S,)> for Vector1<S>
[src]
impl<S: Clone> Clone for Vector1<S>
[src]
impl<S> AsRef<[S; 1]> for Vector1<S>
[src]
impl<S> AsRef<(S,)> for Vector1<S>
[src]
impl<S: PartialEq> PartialEq<Vector1<S>> for Vector1<S>
[src]
impl<S: Clone> From<[S; 1]> for Vector1<S>
[src]
impl<'a, S> From<&'a [S; 1]> for &'a Vector1<S>
[src]
impl<'a, S> From<&'a mut [S; 1]> for &'a mut Vector1<S>
[src]
impl<S> From<(S,)> for Vector1<S>
[src]
impl<'a, S> From<&'a (S,)> for &'a Vector1<S>
[src]
impl<'a, S> From<&'a mut (S,)> for &'a mut Vector1<S>
[src]
impl<S: Copy> Copy for Vector1<S>
[src]
impl<S: Hash> Hash for Vector1<S>
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl<S: BaseNum> Add<Vector1<S>> for Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the +
operator.
fn add(self, other: Vector1<S>) -> Vector1<S>
[src]
impl<'a, S: BaseNum> Add<&'a Vector1<S>> for Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the +
operator.
fn add(self, other: &'a Vector1<S>) -> Vector1<S>
[src]
impl<'a, S: BaseNum> Add<Vector1<S>> for &'a Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the +
operator.
fn add(self, other: Vector1<S>) -> Vector1<S>
[src]
impl<'a, 'b, S: BaseNum> Add<&'a Vector1<S>> for &'b Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the +
operator.
fn add(self, other: &'a Vector1<S>) -> Vector1<S>
[src]
impl<S: BaseNum> Add<Vector1<S>> for Point1<S>
[src]
type Output = Point1<S>
The resulting type after applying the +
operator.
fn add(self, other: Vector1<S>) -> Point1<S>
[src]
impl<'a, S: BaseNum> Add<&'a Vector1<S>> for Point1<S>
[src]
type Output = Point1<S>
The resulting type after applying the +
operator.
fn add(self, other: &'a Vector1<S>) -> Point1<S>
[src]
impl<'a, S: BaseNum> Add<Vector1<S>> for &'a Point1<S>
[src]
type Output = Point1<S>
The resulting type after applying the +
operator.
fn add(self, other: Vector1<S>) -> Point1<S>
[src]
impl<'a, 'b, S: BaseNum> Add<&'a Vector1<S>> for &'b Point1<S>
[src]
type Output = Point1<S>
The resulting type after applying the +
operator.
fn add(self, other: &'a Vector1<S>) -> Point1<S>
[src]
impl<S: BaseNum> Sub<Vector1<S>> for Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the -
operator.
fn sub(self, other: Vector1<S>) -> Vector1<S>
[src]
impl<'a, S: BaseNum> Sub<&'a Vector1<S>> for Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the -
operator.
fn sub(self, other: &'a Vector1<S>) -> Vector1<S>
[src]
impl<'a, S: BaseNum> Sub<Vector1<S>> for &'a Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the -
operator.
fn sub(self, other: Vector1<S>) -> Vector1<S>
[src]
impl<'a, 'b, S: BaseNum> Sub<&'a Vector1<S>> for &'b Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the -
operator.
fn sub(self, other: &'a Vector1<S>) -> Vector1<S>
[src]
impl<S: BaseNum> Sub<Vector1<S>> for Point1<S>
[src]
type Output = Point1<S>
The resulting type after applying the -
operator.
fn sub(self, other: Vector1<S>) -> Point1<S>
[src]
impl<'a, S: BaseNum> Sub<&'a Vector1<S>> for Point1<S>
[src]
type Output = Point1<S>
The resulting type after applying the -
operator.
fn sub(self, other: &'a Vector1<S>) -> Point1<S>
[src]
impl<'a, S: BaseNum> Sub<Vector1<S>> for &'a Point1<S>
[src]
type Output = Point1<S>
The resulting type after applying the -
operator.
fn sub(self, other: Vector1<S>) -> Point1<S>
[src]
impl<'a, 'b, S: BaseNum> Sub<&'a Vector1<S>> for &'b Point1<S>
[src]
type Output = Point1<S>
The resulting type after applying the -
operator.
fn sub(self, other: &'a Vector1<S>) -> Point1<S>
[src]
impl<S: BaseNum> Mul<S> for Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the *
operator.
fn mul(self, other: S) -> Vector1<S>
[src]
impl<'a, S: BaseNum> Mul<S> for &'a Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the *
operator.
fn mul(self, other: S) -> Vector1<S>
[src]
impl Mul<Vector1<usize>> for usize
[src]
type Output = Vector1<usize>
The resulting type after applying the *
operator.
fn mul(self, other: Vector1<usize>) -> Vector1<usize>
[src]
impl<'a> Mul<&'a Vector1<usize>> for usize
[src]
type Output = Vector1<usize>
The resulting type after applying the *
operator.
fn mul(self, other: &'a Vector1<usize>) -> Vector1<usize>
[src]
impl Mul<Vector1<u8>> for u8
[src]
type Output = Vector1<u8>
The resulting type after applying the *
operator.
fn mul(self, other: Vector1<u8>) -> Vector1<u8>
[src]
impl<'a> Mul<&'a Vector1<u8>> for u8
[src]
type Output = Vector1<u8>
The resulting type after applying the *
operator.
fn mul(self, other: &'a Vector1<u8>) -> Vector1<u8>
[src]
impl Mul<Vector1<u16>> for u16
[src]
type Output = Vector1<u16>
The resulting type after applying the *
operator.
fn mul(self, other: Vector1<u16>) -> Vector1<u16>
[src]
impl<'a> Mul<&'a Vector1<u16>> for u16
[src]
type Output = Vector1<u16>
The resulting type after applying the *
operator.
fn mul(self, other: &'a Vector1<u16>) -> Vector1<u16>
[src]
impl Mul<Vector1<u32>> for u32
[src]
type Output = Vector1<u32>
The resulting type after applying the *
operator.
fn mul(self, other: Vector1<u32>) -> Vector1<u32>
[src]
impl<'a> Mul<&'a Vector1<u32>> for u32
[src]
type Output = Vector1<u32>
The resulting type after applying the *
operator.
fn mul(self, other: &'a Vector1<u32>) -> Vector1<u32>
[src]
impl Mul<Vector1<u64>> for u64
[src]
type Output = Vector1<u64>
The resulting type after applying the *
operator.
fn mul(self, other: Vector1<u64>) -> Vector1<u64>
[src]
impl<'a> Mul<&'a Vector1<u64>> for u64
[src]
type Output = Vector1<u64>
The resulting type after applying the *
operator.
fn mul(self, other: &'a Vector1<u64>) -> Vector1<u64>
[src]
impl Mul<Vector1<isize>> for isize
[src]
type Output = Vector1<isize>
The resulting type after applying the *
operator.
fn mul(self, other: Vector1<isize>) -> Vector1<isize>
[src]
impl<'a> Mul<&'a Vector1<isize>> for isize
[src]
type Output = Vector1<isize>
The resulting type after applying the *
operator.
fn mul(self, other: &'a Vector1<isize>) -> Vector1<isize>
[src]
impl Mul<Vector1<i8>> for i8
[src]
type Output = Vector1<i8>
The resulting type after applying the *
operator.
fn mul(self, other: Vector1<i8>) -> Vector1<i8>
[src]
impl<'a> Mul<&'a Vector1<i8>> for i8
[src]
type Output = Vector1<i8>
The resulting type after applying the *
operator.
fn mul(self, other: &'a Vector1<i8>) -> Vector1<i8>
[src]
impl Mul<Vector1<i16>> for i16
[src]
type Output = Vector1<i16>
The resulting type after applying the *
operator.
fn mul(self, other: Vector1<i16>) -> Vector1<i16>
[src]
impl<'a> Mul<&'a Vector1<i16>> for i16
[src]
type Output = Vector1<i16>
The resulting type after applying the *
operator.
fn mul(self, other: &'a Vector1<i16>) -> Vector1<i16>
[src]
impl Mul<Vector1<i32>> for i32
[src]
type Output = Vector1<i32>
The resulting type after applying the *
operator.
fn mul(self, other: Vector1<i32>) -> Vector1<i32>
[src]
impl<'a> Mul<&'a Vector1<i32>> for i32
[src]
type Output = Vector1<i32>
The resulting type after applying the *
operator.
fn mul(self, other: &'a Vector1<i32>) -> Vector1<i32>
[src]
impl Mul<Vector1<i64>> for i64
[src]
type Output = Vector1<i64>
The resulting type after applying the *
operator.
fn mul(self, other: Vector1<i64>) -> Vector1<i64>
[src]
impl<'a> Mul<&'a Vector1<i64>> for i64
[src]
type Output = Vector1<i64>
The resulting type after applying the *
operator.
fn mul(self, other: &'a Vector1<i64>) -> Vector1<i64>
[src]
impl Mul<Vector1<f32>> for f32
[src]
type Output = Vector1<f32>
The resulting type after applying the *
operator.
fn mul(self, other: Vector1<f32>) -> Vector1<f32>
[src]
impl<'a> Mul<&'a Vector1<f32>> for f32
[src]
type Output = Vector1<f32>
The resulting type after applying the *
operator.
fn mul(self, other: &'a Vector1<f32>) -> Vector1<f32>
[src]
impl Mul<Vector1<f64>> for f64
[src]
type Output = Vector1<f64>
The resulting type after applying the *
operator.
fn mul(self, other: Vector1<f64>) -> Vector1<f64>
[src]
impl<'a> Mul<&'a Vector1<f64>> for f64
[src]
type Output = Vector1<f64>
The resulting type after applying the *
operator.
fn mul(self, other: &'a Vector1<f64>) -> Vector1<f64>
[src]
impl<S: BaseNum> Div<S> for Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the /
operator.
fn div(self, other: S) -> Vector1<S>
[src]
impl<'a, S: BaseNum> Div<S> for &'a Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the /
operator.
fn div(self, other: S) -> Vector1<S>
[src]
impl Div<Vector1<usize>> for usize
[src]
type Output = Vector1<usize>
The resulting type after applying the /
operator.
fn div(self, other: Vector1<usize>) -> Vector1<usize>
[src]
impl<'a> Div<&'a Vector1<usize>> for usize
[src]
type Output = Vector1<usize>
The resulting type after applying the /
operator.
fn div(self, other: &'a Vector1<usize>) -> Vector1<usize>
[src]
impl Div<Vector1<u8>> for u8
[src]
type Output = Vector1<u8>
The resulting type after applying the /
operator.
fn div(self, other: Vector1<u8>) -> Vector1<u8>
[src]
impl<'a> Div<&'a Vector1<u8>> for u8
[src]
type Output = Vector1<u8>
The resulting type after applying the /
operator.
fn div(self, other: &'a Vector1<u8>) -> Vector1<u8>
[src]
impl Div<Vector1<u16>> for u16
[src]
type Output = Vector1<u16>
The resulting type after applying the /
operator.
fn div(self, other: Vector1<u16>) -> Vector1<u16>
[src]
impl<'a> Div<&'a Vector1<u16>> for u16
[src]
type Output = Vector1<u16>
The resulting type after applying the /
operator.
fn div(self, other: &'a Vector1<u16>) -> Vector1<u16>
[src]
impl Div<Vector1<u32>> for u32
[src]
type Output = Vector1<u32>
The resulting type after applying the /
operator.
fn div(self, other: Vector1<u32>) -> Vector1<u32>
[src]
impl<'a> Div<&'a Vector1<u32>> for u32
[src]
type Output = Vector1<u32>
The resulting type after applying the /
operator.
fn div(self, other: &'a Vector1<u32>) -> Vector1<u32>
[src]
impl Div<Vector1<u64>> for u64
[src]
type Output = Vector1<u64>
The resulting type after applying the /
operator.
fn div(self, other: Vector1<u64>) -> Vector1<u64>
[src]
impl<'a> Div<&'a Vector1<u64>> for u64
[src]
type Output = Vector1<u64>
The resulting type after applying the /
operator.
fn div(self, other: &'a Vector1<u64>) -> Vector1<u64>
[src]
impl Div<Vector1<isize>> for isize
[src]
type Output = Vector1<isize>
The resulting type after applying the /
operator.
fn div(self, other: Vector1<isize>) -> Vector1<isize>
[src]
impl<'a> Div<&'a Vector1<isize>> for isize
[src]
type Output = Vector1<isize>
The resulting type after applying the /
operator.
fn div(self, other: &'a Vector1<isize>) -> Vector1<isize>
[src]
impl Div<Vector1<i8>> for i8
[src]
type Output = Vector1<i8>
The resulting type after applying the /
operator.
fn div(self, other: Vector1<i8>) -> Vector1<i8>
[src]
impl<'a> Div<&'a Vector1<i8>> for i8
[src]
type Output = Vector1<i8>
The resulting type after applying the /
operator.
fn div(self, other: &'a Vector1<i8>) -> Vector1<i8>
[src]
impl Div<Vector1<i16>> for i16
[src]
type Output = Vector1<i16>
The resulting type after applying the /
operator.
fn div(self, other: Vector1<i16>) -> Vector1<i16>
[src]
impl<'a> Div<&'a Vector1<i16>> for i16
[src]
type Output = Vector1<i16>
The resulting type after applying the /
operator.
fn div(self, other: &'a Vector1<i16>) -> Vector1<i16>
[src]
impl Div<Vector1<i32>> for i32
[src]
type Output = Vector1<i32>
The resulting type after applying the /
operator.
fn div(self, other: Vector1<i32>) -> Vector1<i32>
[src]
impl<'a> Div<&'a Vector1<i32>> for i32
[src]
type Output = Vector1<i32>
The resulting type after applying the /
operator.
fn div(self, other: &'a Vector1<i32>) -> Vector1<i32>
[src]
impl Div<Vector1<i64>> for i64
[src]
type Output = Vector1<i64>
The resulting type after applying the /
operator.
fn div(self, other: Vector1<i64>) -> Vector1<i64>
[src]
impl<'a> Div<&'a Vector1<i64>> for i64
[src]
type Output = Vector1<i64>
The resulting type after applying the /
operator.
fn div(self, other: &'a Vector1<i64>) -> Vector1<i64>
[src]
impl Div<Vector1<f32>> for f32
[src]
type Output = Vector1<f32>
The resulting type after applying the /
operator.
fn div(self, other: Vector1<f32>) -> Vector1<f32>
[src]
impl<'a> Div<&'a Vector1<f32>> for f32
[src]
type Output = Vector1<f32>
The resulting type after applying the /
operator.
fn div(self, other: &'a Vector1<f32>) -> Vector1<f32>
[src]
impl Div<Vector1<f64>> for f64
[src]
type Output = Vector1<f64>
The resulting type after applying the /
operator.
fn div(self, other: Vector1<f64>) -> Vector1<f64>
[src]
impl<'a> Div<&'a Vector1<f64>> for f64
[src]
type Output = Vector1<f64>
The resulting type after applying the /
operator.
fn div(self, other: &'a Vector1<f64>) -> Vector1<f64>
[src]
impl<S: BaseNum> Rem<S> for Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the %
operator.
fn rem(self, other: S) -> Vector1<S>
[src]
impl<'a, S: BaseNum> Rem<S> for &'a Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the %
operator.
fn rem(self, other: S) -> Vector1<S>
[src]
impl Rem<Vector1<usize>> for usize
[src]
type Output = Vector1<usize>
The resulting type after applying the %
operator.
fn rem(self, other: Vector1<usize>) -> Vector1<usize>
[src]
impl<'a> Rem<&'a Vector1<usize>> for usize
[src]
type Output = Vector1<usize>
The resulting type after applying the %
operator.
fn rem(self, other: &'a Vector1<usize>) -> Vector1<usize>
[src]
impl Rem<Vector1<u8>> for u8
[src]
type Output = Vector1<u8>
The resulting type after applying the %
operator.
fn rem(self, other: Vector1<u8>) -> Vector1<u8>
[src]
impl<'a> Rem<&'a Vector1<u8>> for u8
[src]
type Output = Vector1<u8>
The resulting type after applying the %
operator.
fn rem(self, other: &'a Vector1<u8>) -> Vector1<u8>
[src]
impl Rem<Vector1<u16>> for u16
[src]
type Output = Vector1<u16>
The resulting type after applying the %
operator.
fn rem(self, other: Vector1<u16>) -> Vector1<u16>
[src]
impl<'a> Rem<&'a Vector1<u16>> for u16
[src]
type Output = Vector1<u16>
The resulting type after applying the %
operator.
fn rem(self, other: &'a Vector1<u16>) -> Vector1<u16>
[src]
impl Rem<Vector1<u32>> for u32
[src]
type Output = Vector1<u32>
The resulting type after applying the %
operator.
fn rem(self, other: Vector1<u32>) -> Vector1<u32>
[src]
impl<'a> Rem<&'a Vector1<u32>> for u32
[src]
type Output = Vector1<u32>
The resulting type after applying the %
operator.
fn rem(self, other: &'a Vector1<u32>) -> Vector1<u32>
[src]
impl Rem<Vector1<u64>> for u64
[src]
type Output = Vector1<u64>
The resulting type after applying the %
operator.
fn rem(self, other: Vector1<u64>) -> Vector1<u64>
[src]
impl<'a> Rem<&'a Vector1<u64>> for u64
[src]
type Output = Vector1<u64>
The resulting type after applying the %
operator.
fn rem(self, other: &'a Vector1<u64>) -> Vector1<u64>
[src]
impl Rem<Vector1<isize>> for isize
[src]
type Output = Vector1<isize>
The resulting type after applying the %
operator.
fn rem(self, other: Vector1<isize>) -> Vector1<isize>
[src]
impl<'a> Rem<&'a Vector1<isize>> for isize
[src]
type Output = Vector1<isize>
The resulting type after applying the %
operator.
fn rem(self, other: &'a Vector1<isize>) -> Vector1<isize>
[src]
impl Rem<Vector1<i8>> for i8
[src]
type Output = Vector1<i8>
The resulting type after applying the %
operator.
fn rem(self, other: Vector1<i8>) -> Vector1<i8>
[src]
impl<'a> Rem<&'a Vector1<i8>> for i8
[src]
type Output = Vector1<i8>
The resulting type after applying the %
operator.
fn rem(self, other: &'a Vector1<i8>) -> Vector1<i8>
[src]
impl Rem<Vector1<i16>> for i16
[src]
type Output = Vector1<i16>
The resulting type after applying the %
operator.
fn rem(self, other: Vector1<i16>) -> Vector1<i16>
[src]
impl<'a> Rem<&'a Vector1<i16>> for i16
[src]
type Output = Vector1<i16>
The resulting type after applying the %
operator.
fn rem(self, other: &'a Vector1<i16>) -> Vector1<i16>
[src]
impl Rem<Vector1<i32>> for i32
[src]
type Output = Vector1<i32>
The resulting type after applying the %
operator.
fn rem(self, other: Vector1<i32>) -> Vector1<i32>
[src]
impl<'a> Rem<&'a Vector1<i32>> for i32
[src]
type Output = Vector1<i32>
The resulting type after applying the %
operator.
fn rem(self, other: &'a Vector1<i32>) -> Vector1<i32>
[src]
impl Rem<Vector1<i64>> for i64
[src]
type Output = Vector1<i64>
The resulting type after applying the %
operator.
fn rem(self, other: Vector1<i64>) -> Vector1<i64>
[src]
impl<'a> Rem<&'a Vector1<i64>> for i64
[src]
type Output = Vector1<i64>
The resulting type after applying the %
operator.
fn rem(self, other: &'a Vector1<i64>) -> Vector1<i64>
[src]
impl Rem<Vector1<f32>> for f32
[src]
type Output = Vector1<f32>
The resulting type after applying the %
operator.
fn rem(self, other: Vector1<f32>) -> Vector1<f32>
[src]
impl<'a> Rem<&'a Vector1<f32>> for f32
[src]
type Output = Vector1<f32>
The resulting type after applying the %
operator.
fn rem(self, other: &'a Vector1<f32>) -> Vector1<f32>
[src]
impl Rem<Vector1<f64>> for f64
[src]
type Output = Vector1<f64>
The resulting type after applying the %
operator.
fn rem(self, other: Vector1<f64>) -> Vector1<f64>
[src]
impl<'a> Rem<&'a Vector1<f64>> for f64
[src]
type Output = Vector1<f64>
The resulting type after applying the %
operator.
fn rem(self, other: &'a Vector1<f64>) -> Vector1<f64>
[src]
impl<S: Neg<Output = S>> Neg for Vector1<S>
[src]
type Output = Vector1<S>
The resulting type after applying the -
operator.
fn neg(self) -> Vector1<S>
[src]
impl<S: BaseNum + AddAssign<S>> AddAssign<Vector1<S>> for Vector1<S>
[src]
fn add_assign(&mut self, other: Vector1<S>)
[src]
impl<S: BaseNum + AddAssign<S>> AddAssign<Vector1<S>> for Point1<S>
[src]
fn add_assign(&mut self, vector: Vector1<S>)
[src]
impl<S: BaseNum + SubAssign<S>> SubAssign<Vector1<S>> for Vector1<S>
[src]
fn sub_assign(&mut self, other: Vector1<S>)
[src]
impl<S: BaseNum + SubAssign<S>> SubAssign<Vector1<S>> for Point1<S>
[src]
fn sub_assign(&mut self, vector: Vector1<S>)
[src]
impl<S: BaseNum + MulAssign<S>> MulAssign<S> for Vector1<S>
[src]
fn mul_assign(&mut self, scalar: S)
[src]
impl<S: BaseNum + DivAssign<S>> DivAssign<S> for Vector1<S>
[src]
fn div_assign(&mut self, scalar: S)
[src]
impl<S: BaseNum + RemAssign<S>> RemAssign<S> for Vector1<S>
[src]
fn rem_assign(&mut self, scalar: S)
[src]
impl<S> Index<usize> for Vector1<S>
[src]
impl<S> Index<Range<usize>> for Vector1<S>
[src]
type Output = [S]
The returned type after indexing.
fn index<'a>(&'a self, i: Range<usize>) -> &'a [S]
[src]
impl<S> Index<RangeTo<usize>> for Vector1<S>
[src]
type Output = [S]
The returned type after indexing.
fn index<'a>(&'a self, i: RangeTo<usize>) -> &'a [S]
[src]
impl<S> Index<RangeFrom<usize>> for Vector1<S>
[src]
type Output = [S]
The returned type after indexing.
fn index<'a>(&'a self, i: RangeFrom<usize>) -> &'a [S]
[src]
impl<S> Index<RangeFull> for Vector1<S>
[src]
type Output = [S]
The returned type after indexing.
fn index<'a>(&'a self, i: RangeFull) -> &'a [S]
[src]
impl<S> IndexMut<usize> for Vector1<S>
[src]
impl<S> IndexMut<Range<usize>> for Vector1<S>
[src]
fn index_mut<'a>(&'a mut self, i: Range<usize>) -> &'a mut [S]
[src]
impl<S> IndexMut<RangeTo<usize>> for Vector1<S>
[src]
fn index_mut<'a>(&'a mut self, i: RangeTo<usize>) -> &'a mut [S]
[src]
impl<S> IndexMut<RangeFrom<usize>> for Vector1<S>
[src]
fn index_mut<'a>(&'a mut self, i: RangeFrom<usize>) -> &'a mut [S]
[src]
impl<S> IndexMut<RangeFull> for Vector1<S>
[src]
fn index_mut<'a>(&'a mut self, i: RangeFull) -> &'a mut [S]
[src]
impl<S: Debug> Debug for Vector1<S>
[src]
impl<S: BaseNum> Sum<Vector1<S>> for Vector1<S>
[src]
impl<'a, S: 'a + BaseNum> Sum<&'a Vector1<S>> for Vector1<S>
[src]
impl<S: BaseFloat> AbsDiffEq<Vector1<S>> for Vector1<S>
[src]
type Epsilon = S::Epsilon
Used for specifying relative comparisons.
fn default_epsilon() -> S::Epsilon
[src]
fn abs_diff_eq(&self, other: &Self, epsilon: S::Epsilon) -> bool
[src]
fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool
[src]
impl<S: BaseFloat> RelativeEq<Vector1<S>> for Vector1<S>
[src]
fn default_max_relative() -> S::Epsilon
[src]
fn relative_eq(
&self,
other: &Self,
epsilon: S::Epsilon,
max_relative: S::Epsilon
) -> bool
[src]
&self,
other: &Self,
epsilon: S::Epsilon,
max_relative: S::Epsilon
) -> bool
fn relative_ne(
&self,
other: &Rhs,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon
) -> bool
[src]
&self,
other: &Rhs,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon
) -> bool
impl<S: BaseFloat> UlpsEq<Vector1<S>> for Vector1<S>
[src]
fn default_max_ulps() -> u32
[src]
fn ulps_eq(&self, other: &Self, epsilon: S::Epsilon, max_ulps: u32) -> bool
[src]
fn ulps_ne(&self, other: &Rhs, epsilon: Self::Epsilon, max_ulps: u32) -> bool
[src]
impl<S: Bounded> Bounded for Vector1<S>
[src]
impl<S: BaseNum> Zero for Vector1<S>
[src]
impl<S> Distribution<Vector1<S>> for Standard where
Standard: Distribution<S>,
S: BaseFloat,
[src]
Standard: Distribution<S>,
S: BaseFloat,
Auto Trait Implementations
impl<S> Send for Vector1<S> where
S: Send,
S: Send,
impl<S> Unpin for Vector1<S> where
S: Unpin,
S: Unpin,
impl<S> Sync for Vector1<S> where
S: Sync,
S: Sync,
impl<S> UnwindSafe for Vector1<S> where
S: UnwindSafe,
S: UnwindSafe,
impl<S> RefUnwindSafe for Vector1<S> where
S: RefUnwindSafe,
S: RefUnwindSafe,
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T, Rhs, Output> NumOps<Rhs, Output> for T where
T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,
[src]
T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,
impl<T, Rhs> NumAssignOps<Rhs> for T where
T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,
[src]
T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,