Struct cgmath::Point1

source ·
#[repr(C)]
pub struct Point1<S> { pub x: S, }
Expand description

A point in 1-dimensional space.

This type is marked as #[repr(C)].

Fields§

§x: S

Implementations§

source§

impl<S> Point1<S>

source

pub fn new(x: S) -> Point1<S>

Construct a new point, using the provided values.

source

pub fn map<U, F>(self, f: F) -> Point1<U>where F: FnMut(S) -> U,

Perform the given operation on each field in the point, returning a new point constructed from the operations.

source§

impl<S: NumCast + Copy> Point1<S>

source

pub fn cast<T: NumCast>(&self) -> Option<Point1<T>>

Component-wise casting to another type

Trait Implementations§

source§

impl<'a, 'b, S: BaseNum> Add<&'a Vector1<S>> for &'b Point1<S>

§

type Output = Point1<S>

The resulting type after applying the + operator.
source§

fn add(self, other: &'a Vector1<S>) -> Point1<S>

Performs the + operation. Read more
source§

impl<'a, S: BaseNum> Add<&'a Vector1<S>> for Point1<S>

§

type Output = Point1<S>

The resulting type after applying the + operator.
source§

fn add(self, other: &'a Vector1<S>) -> Point1<S>

Performs the + operation. Read more
source§

impl<'a, S: BaseNum> Add<Vector1<S>> for &'a Point1<S>

§

type Output = Point1<S>

The resulting type after applying the + operator.
source§

fn add(self, other: Vector1<S>) -> Point1<S>

Performs the + operation. Read more
source§

impl<S: BaseNum> Add<Vector1<S>> for Point1<S>

§

type Output = Point1<S>

The resulting type after applying the + operator.
source§

fn add(self, other: Vector1<S>) -> Point1<S>

Performs the + operation. Read more
source§

impl<S: BaseNum + AddAssign<S>> AddAssign<Vector1<S>> for Point1<S>

source§

fn add_assign(&mut self, vector: Vector1<S>)

Performs the += operation. Read more
source§

impl<S: BaseFloat> ApproxEq for Point1<S>

§

type Epsilon = <S as ApproxEq>::Epsilon

Used for specifying relative comparisons.
source§

fn default_epsilon() -> S::Epsilon

The default tolerance to use when testing values that are close together. Read more
source§

fn default_max_relative() -> S::Epsilon

The default relative tolerance for testing values that are far-apart. Read more
source§

fn default_max_ulps() -> u32

The default ULPs to tolerate when testing values that are far-apart. Read more
source§

fn relative_eq( &self, other: &Self, epsilon: S::Epsilon, max_relative: S::Epsilon ) -> bool

A test for equality that uses a relative comparison if the values are far apart.
source§

fn ulps_eq(&self, other: &Self, epsilon: S::Epsilon, max_ulps: u32) -> bool

A test for equality that uses units in the last place (ULP) if the values are far apart.
source§

fn relative_ne( &self, other: &Self, epsilon: Self::Epsilon, max_relative: Self::Epsilon ) -> bool

The inverse of ApproxEq::relative_eq.
source§

fn ulps_ne(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool

The inverse of ApproxEq::ulps_eq.
source§

impl<S: BaseNum> Array for Point1<S>

§

type Element = S

source§

fn len() -> usize

Get the number of elements in the array type Read more
source§

fn from_value(scalar: S) -> Point1<S>

Construct a vector from a single value, replicating it. Read more
source§

fn sum(self) -> Swhere S: Add<Output = S>,

The sum of the elements of the array.
source§

fn product(self) -> Swhere S: Mul<Output = S>,

The product of the elements of the array.
source§

fn as_ptr(&self) -> *const Self::Element

Get the pointer to the first element of the array.
source§

fn as_mut_ptr(&mut self) -> *mut Self::Element

Get a mutable pointer to the first element of the array.
source§

fn swap_elements(&mut self, i: usize, j: usize)

Swap the elements at indices i and j in-place.
source§

impl<S> AsMut<[S; 1]> for Point1<S>

source§

fn as_mut(&mut self) -> &mut [S; 1]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<S> AsMut<(S,)> for Point1<S>

source§

fn as_mut(&mut self) -> &mut (S,)

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<S> AsRef<[S; 1]> for Point1<S>

source§

fn as_ref(&self) -> &[S; 1]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<S> AsRef<(S,)> for Point1<S>

source§

fn as_ref(&self) -> &(S,)

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<S: Bounded> Bounded for Point1<S>

source§

fn min_value() -> Point1<S>

Returns the smallest finite number this type can represent
source§

fn max_value() -> Point1<S>

Returns the largest finite number this type can represent
source§

impl<S: Clone> Clone for Point1<S>

source§

fn clone(&self) -> Point1<S>

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl<S: Debug> Debug for Point1<S>

source§

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

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

impl<'a> Div<&'a Point1<f32>> for f32

§

type Output = Point1<f32>

The resulting type after applying the / operator.
source§

fn div(self, other: &'a Point1<f32>) -> Point1<f32>

Performs the / operation. Read more
source§

impl<'a> Div<&'a Point1<f64>> for f64

§

type Output = Point1<f64>

The resulting type after applying the / operator.
source§

fn div(self, other: &'a Point1<f64>) -> Point1<f64>

Performs the / operation. Read more
source§

impl<'a> Div<&'a Point1<i16>> for i16

§

type Output = Point1<i16>

The resulting type after applying the / operator.
source§

fn div(self, other: &'a Point1<i16>) -> Point1<i16>

Performs the / operation. Read more
source§

impl<'a> Div<&'a Point1<i32>> for i32

§

type Output = Point1<i32>

The resulting type after applying the / operator.
source§

fn div(self, other: &'a Point1<i32>) -> Point1<i32>

Performs the / operation. Read more
source§

impl<'a> Div<&'a Point1<i64>> for i64

§

type Output = Point1<i64>

The resulting type after applying the / operator.
source§

fn div(self, other: &'a Point1<i64>) -> Point1<i64>

Performs the / operation. Read more
source§

impl<'a> Div<&'a Point1<i8>> for i8

§

type Output = Point1<i8>

The resulting type after applying the / operator.
source§

fn div(self, other: &'a Point1<i8>) -> Point1<i8>

Performs the / operation. Read more
source§

impl<'a> Div<&'a Point1<isize>> for isize

§

type Output = Point1<isize>

The resulting type after applying the / operator.
source§

fn div(self, other: &'a Point1<isize>) -> Point1<isize>

Performs the / operation. Read more
source§

impl<'a> Div<&'a Point1<u16>> for u16

§

type Output = Point1<u16>

The resulting type after applying the / operator.
source§

fn div(self, other: &'a Point1<u16>) -> Point1<u16>

Performs the / operation. Read more
source§

impl<'a> Div<&'a Point1<u32>> for u32

§

type Output = Point1<u32>

The resulting type after applying the / operator.
source§

fn div(self, other: &'a Point1<u32>) -> Point1<u32>

Performs the / operation. Read more
source§

impl<'a> Div<&'a Point1<u64>> for u64

§

type Output = Point1<u64>

The resulting type after applying the / operator.
source§

fn div(self, other: &'a Point1<u64>) -> Point1<u64>

Performs the / operation. Read more
source§

impl<'a> Div<&'a Point1<u8>> for u8

§

type Output = Point1<u8>

The resulting type after applying the / operator.
source§

fn div(self, other: &'a Point1<u8>) -> Point1<u8>

Performs the / operation. Read more
source§

impl<'a> Div<&'a Point1<usize>> for usize

§

type Output = Point1<usize>

The resulting type after applying the / operator.
source§

fn div(self, other: &'a Point1<usize>) -> Point1<usize>

Performs the / operation. Read more
source§

impl Div<Point1<f32>> for f32

§

type Output = Point1<f32>

The resulting type after applying the / operator.
source§

fn div(self, other: Point1<f32>) -> Point1<f32>

Performs the / operation. Read more
source§

impl Div<Point1<f64>> for f64

§

type Output = Point1<f64>

The resulting type after applying the / operator.
source§

fn div(self, other: Point1<f64>) -> Point1<f64>

Performs the / operation. Read more
source§

impl Div<Point1<i16>> for i16

§

type Output = Point1<i16>

The resulting type after applying the / operator.
source§

fn div(self, other: Point1<i16>) -> Point1<i16>

Performs the / operation. Read more
source§

impl Div<Point1<i32>> for i32

§

type Output = Point1<i32>

The resulting type after applying the / operator.
source§

fn div(self, other: Point1<i32>) -> Point1<i32>

Performs the / operation. Read more
source§

impl Div<Point1<i64>> for i64

§

type Output = Point1<i64>

The resulting type after applying the / operator.
source§

fn div(self, other: Point1<i64>) -> Point1<i64>

Performs the / operation. Read more
source§

impl Div<Point1<i8>> for i8

§

type Output = Point1<i8>

The resulting type after applying the / operator.
source§

fn div(self, other: Point1<i8>) -> Point1<i8>

Performs the / operation. Read more
source§

impl Div<Point1<isize>> for isize

§

type Output = Point1<isize>

The resulting type after applying the / operator.
source§

fn div(self, other: Point1<isize>) -> Point1<isize>

Performs the / operation. Read more
source§

impl Div<Point1<u16>> for u16

§

type Output = Point1<u16>

The resulting type after applying the / operator.
source§

fn div(self, other: Point1<u16>) -> Point1<u16>

Performs the / operation. Read more
source§

impl Div<Point1<u32>> for u32

§

type Output = Point1<u32>

The resulting type after applying the / operator.
source§

fn div(self, other: Point1<u32>) -> Point1<u32>

Performs the / operation. Read more
source§

impl Div<Point1<u64>> for u64

§

type Output = Point1<u64>

The resulting type after applying the / operator.
source§

fn div(self, other: Point1<u64>) -> Point1<u64>

Performs the / operation. Read more
source§

impl Div<Point1<u8>> for u8

§

type Output = Point1<u8>

The resulting type after applying the / operator.
source§

fn div(self, other: Point1<u8>) -> Point1<u8>

Performs the / operation. Read more
source§

impl Div<Point1<usize>> for usize

§

type Output = Point1<usize>

The resulting type after applying the / operator.
source§

fn div(self, other: Point1<usize>) -> Point1<usize>

Performs the / operation. Read more
source§

impl<'a, S: BaseNum> Div<S> for &'a Point1<S>

§

type Output = Point1<S>

The resulting type after applying the / operator.
source§

fn div(self, other: S) -> Point1<S>

Performs the / operation. Read more
source§

impl<S: BaseNum> Div<S> for Point1<S>

§

type Output = Point1<S>

The resulting type after applying the / operator.
source§

fn div(self, other: S) -> Point1<S>

Performs the / operation. Read more
source§

impl<S: BaseNum + DivAssign<S>> DivAssign<S> for Point1<S>

source§

fn div_assign(&mut self, scalar: S)

Performs the /= operation. Read more
source§

impl<S: BaseNum> ElementWise<Point1<S>> for Point1<S>

source§

fn add_element_wise(self, rhs: Point1<S>) -> Point1<S>

source§

fn sub_element_wise(self, rhs: Point1<S>) -> Point1<S>

source§

fn mul_element_wise(self, rhs: Point1<S>) -> Point1<S>

source§

fn div_element_wise(self, rhs: Point1<S>) -> Point1<S>

source§

fn rem_element_wise(self, rhs: Point1<S>) -> Point1<S>

source§

fn add_assign_element_wise(&mut self, rhs: Point1<S>)

source§

fn sub_assign_element_wise(&mut self, rhs: Point1<S>)

source§

fn mul_assign_element_wise(&mut self, rhs: Point1<S>)

source§

fn div_assign_element_wise(&mut self, rhs: Point1<S>)

source§

fn rem_assign_element_wise(&mut self, rhs: Point1<S>)

source§

impl<S: BaseNum> ElementWise<S> for Point1<S>

source§

fn add_element_wise(self, rhs: S) -> Point1<S>

source§

fn sub_element_wise(self, rhs: S) -> Point1<S>

source§

fn mul_element_wise(self, rhs: S) -> Point1<S>

source§

fn div_element_wise(self, rhs: S) -> Point1<S>

source§

fn rem_element_wise(self, rhs: S) -> Point1<S>

source§

fn add_assign_element_wise(&mut self, rhs: S)

source§

fn sub_assign_element_wise(&mut self, rhs: S)

source§

fn mul_assign_element_wise(&mut self, rhs: S)

source§

fn div_assign_element_wise(&mut self, rhs: S)

source§

fn rem_assign_element_wise(&mut self, rhs: S)

source§

impl<S: BaseNum> EuclideanSpace for Point1<S>

§

type Scalar = S

The associated scalar over which the space is defined. Read more
§

type Diff = Vector1<S>

The associated space of displacement vectors.
source§

fn origin() -> Point1<S>

The point at the origin of the Euclidean space.
source§

fn from_vec(v: Vector1<S>) -> Point1<S>

Convert a displacement vector to a point. Read more
source§

fn to_vec(self) -> Vector1<S>

Convert a point to a displacement vector. Read more
source§

fn dot(self, v: Vector1<S>) -> S

This is a weird one, but its useful for plane calculations.
source§

fn midpoint(self, other: Self) -> Self

Returns the middle point between two other points. Read more
source§

fn centroid(points: &[Self]) -> Self

Returns the average position of all points in the slice. Read more
source§

impl<'a, S> From<&'a [S; 1]> for &'a Point1<S>

source§

fn from(v: &'a [S; 1]) -> &'a Point1<S>

Converts to this type from the input type.
source§

impl<'a, S> From<&'a (S,)> for &'a Point1<S>

source§

fn from(v: &'a (S,)) -> &'a Point1<S>

Converts to this type from the input type.
source§

impl<'a, S> From<&'a mut [S; 1]> for &'a mut Point1<S>

source§

fn from(v: &'a mut [S; 1]) -> &'a mut Point1<S>

Converts to this type from the input type.
source§

impl<'a, S> From<&'a mut (S,)> for &'a mut Point1<S>

source§

fn from(v: &'a mut (S,)) -> &'a mut Point1<S>

Converts to this type from the input type.
source§

impl<S: Clone> From<[S; 1]> for Point1<S>

source§

fn from(v: [S; 1]) -> Point1<S>

Converts to this type from the input type.
source§

impl<S> From<(S,)> for Point1<S>

source§

fn from(v: (S,)) -> Point1<S>

Converts to this type from the input type.
source§

impl<S: Hash> Hash for Point1<S>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<S> Index<Range<usize>> for Point1<S>

§

type Output = [S]

The returned type after indexing.
source§

fn index<'a>(&'a self, i: Range<usize>) -> &'a [S]

Performs the indexing (container[index]) operation. Read more
source§

impl<S> Index<RangeFrom<usize>> for Point1<S>

§

type Output = [S]

The returned type after indexing.
source§

fn index<'a>(&'a self, i: RangeFrom<usize>) -> &'a [S]

Performs the indexing (container[index]) operation. Read more
source§

impl<S> Index<RangeFull> for Point1<S>

§

type Output = [S]

The returned type after indexing.
source§

fn index<'a>(&'a self, i: RangeFull) -> &'a [S]

Performs the indexing (container[index]) operation. Read more
source§

impl<S> Index<RangeTo<usize>> for Point1<S>

§

type Output = [S]

The returned type after indexing.
source§

fn index<'a>(&'a self, i: RangeTo<usize>) -> &'a [S]

Performs the indexing (container[index]) operation. Read more
source§

impl<S> Index<usize> for Point1<S>

§

type Output = S

The returned type after indexing.
source§

fn index<'a>(&'a self, i: usize) -> &'a S

Performs the indexing (container[index]) operation. Read more
source§

impl<S> IndexMut<Range<usize>> for Point1<S>

source§

fn index_mut<'a>(&'a mut self, i: Range<usize>) -> &'a mut [S]

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<S> IndexMut<RangeFrom<usize>> for Point1<S>

source§

fn index_mut<'a>(&'a mut self, i: RangeFrom<usize>) -> &'a mut [S]

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<S> IndexMut<RangeFull> for Point1<S>

source§

fn index_mut<'a>(&'a mut self, i: RangeFull) -> &'a mut [S]

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<S> IndexMut<RangeTo<usize>> for Point1<S>

source§

fn index_mut<'a>(&'a mut self, i: RangeTo<usize>) -> &'a mut [S]

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<S> IndexMut<usize> for Point1<S>

source§

fn index_mut<'a>(&'a mut self, i: usize) -> &'a mut S

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<S> Into<[S; 1]> for Point1<S>

source§

fn into(self) -> [S; 1]

Converts this type into the (usually inferred) input type.
source§

impl<S> Into<(S,)> for Point1<S>

source§

fn into(self) -> (S,)

Converts this type into the (usually inferred) input type.
source§

impl<S: BaseFloat> MetricSpace for Point1<S>

§

type Metric = S

The metric to be returned by the distance function.
source§

fn distance2(self, other: Self) -> S

Returns the squared distance. Read more
source§

fn distance(self, other: Self) -> Self::Metric

The distance between two values.
source§

impl<'a> Mul<&'a Point1<f32>> for f32

§

type Output = Point1<f32>

The resulting type after applying the * operator.
source§

fn mul(self, other: &'a Point1<f32>) -> Point1<f32>

Performs the * operation. Read more
source§

impl<'a> Mul<&'a Point1<f64>> for f64

§

type Output = Point1<f64>

The resulting type after applying the * operator.
source§

fn mul(self, other: &'a Point1<f64>) -> Point1<f64>

Performs the * operation. Read more
source§

impl<'a> Mul<&'a Point1<i16>> for i16

§

type Output = Point1<i16>

The resulting type after applying the * operator.
source§

fn mul(self, other: &'a Point1<i16>) -> Point1<i16>

Performs the * operation. Read more
source§

impl<'a> Mul<&'a Point1<i32>> for i32

§

type Output = Point1<i32>

The resulting type after applying the * operator.
source§

fn mul(self, other: &'a Point1<i32>) -> Point1<i32>

Performs the * operation. Read more
source§

impl<'a> Mul<&'a Point1<i64>> for i64

§

type Output = Point1<i64>

The resulting type after applying the * operator.
source§

fn mul(self, other: &'a Point1<i64>) -> Point1<i64>

Performs the * operation. Read more
source§

impl<'a> Mul<&'a Point1<i8>> for i8

§

type Output = Point1<i8>

The resulting type after applying the * operator.
source§

fn mul(self, other: &'a Point1<i8>) -> Point1<i8>

Performs the * operation. Read more
source§

impl<'a> Mul<&'a Point1<isize>> for isize

§

type Output = Point1<isize>

The resulting type after applying the * operator.
source§

fn mul(self, other: &'a Point1<isize>) -> Point1<isize>

Performs the * operation. Read more
source§

impl<'a> Mul<&'a Point1<u16>> for u16

§

type Output = Point1<u16>

The resulting type after applying the * operator.
source§

fn mul(self, other: &'a Point1<u16>) -> Point1<u16>

Performs the * operation. Read more
source§

impl<'a> Mul<&'a Point1<u32>> for u32

§

type Output = Point1<u32>

The resulting type after applying the * operator.
source§

fn mul(self, other: &'a Point1<u32>) -> Point1<u32>

Performs the * operation. Read more
source§

impl<'a> Mul<&'a Point1<u64>> for u64

§

type Output = Point1<u64>

The resulting type after applying the * operator.
source§

fn mul(self, other: &'a Point1<u64>) -> Point1<u64>

Performs the * operation. Read more
source§

impl<'a> Mul<&'a Point1<u8>> for u8

§

type Output = Point1<u8>

The resulting type after applying the * operator.
source§

fn mul(self, other: &'a Point1<u8>) -> Point1<u8>

Performs the * operation. Read more
source§

impl<'a> Mul<&'a Point1<usize>> for usize

§

type Output = Point1<usize>

The resulting type after applying the * operator.
source§

fn mul(self, other: &'a Point1<usize>) -> Point1<usize>

Performs the * operation. Read more
source§

impl Mul<Point1<f32>> for f32

§

type Output = Point1<f32>

The resulting type after applying the * operator.
source§

fn mul(self, other: Point1<f32>) -> Point1<f32>

Performs the * operation. Read more
source§

impl Mul<Point1<f64>> for f64

§

type Output = Point1<f64>

The resulting type after applying the * operator.
source§

fn mul(self, other: Point1<f64>) -> Point1<f64>

Performs the * operation. Read more
source§

impl Mul<Point1<i16>> for i16

§

type Output = Point1<i16>

The resulting type after applying the * operator.
source§

fn mul(self, other: Point1<i16>) -> Point1<i16>

Performs the * operation. Read more
source§

impl Mul<Point1<i32>> for i32

§

type Output = Point1<i32>

The resulting type after applying the * operator.
source§

fn mul(self, other: Point1<i32>) -> Point1<i32>

Performs the * operation. Read more
source§

impl Mul<Point1<i64>> for i64

§

type Output = Point1<i64>

The resulting type after applying the * operator.
source§

fn mul(self, other: Point1<i64>) -> Point1<i64>

Performs the * operation. Read more
source§

impl Mul<Point1<i8>> for i8

§

type Output = Point1<i8>

The resulting type after applying the * operator.
source§

fn mul(self, other: Point1<i8>) -> Point1<i8>

Performs the * operation. Read more
source§

impl Mul<Point1<isize>> for isize

§

type Output = Point1<isize>

The resulting type after applying the * operator.
source§

fn mul(self, other: Point1<isize>) -> Point1<isize>

Performs the * operation. Read more
source§

impl Mul<Point1<u16>> for u16

§

type Output = Point1<u16>

The resulting type after applying the * operator.
source§

fn mul(self, other: Point1<u16>) -> Point1<u16>

Performs the * operation. Read more
source§

impl Mul<Point1<u32>> for u32

§

type Output = Point1<u32>

The resulting type after applying the * operator.
source§

fn mul(self, other: Point1<u32>) -> Point1<u32>

Performs the * operation. Read more
source§

impl Mul<Point1<u64>> for u64

§

type Output = Point1<u64>

The resulting type after applying the * operator.
source§

fn mul(self, other: Point1<u64>) -> Point1<u64>

Performs the * operation. Read more
source§

impl Mul<Point1<u8>> for u8

§

type Output = Point1<u8>

The resulting type after applying the * operator.
source§

fn mul(self, other: Point1<u8>) -> Point1<u8>

Performs the * operation. Read more
source§

impl Mul<Point1<usize>> for usize

§

type Output = Point1<usize>

The resulting type after applying the * operator.
source§

fn mul(self, other: Point1<usize>) -> Point1<usize>

Performs the * operation. Read more
source§

impl<'a, S: BaseNum> Mul<S> for &'a Point1<S>

§

type Output = Point1<S>

The resulting type after applying the * operator.
source§

fn mul(self, other: S) -> Point1<S>

Performs the * operation. Read more
source§

impl<S: BaseNum> Mul<S> for Point1<S>

§

type Output = Point1<S>

The resulting type after applying the * operator.
source§

fn mul(self, other: S) -> Point1<S>

Performs the * operation. Read more
source§

impl<S: BaseNum + MulAssign<S>> MulAssign<S> for Point1<S>

source§

fn mul_assign(&mut self, scalar: S)

Performs the *= operation. Read more
source§

impl<S: PartialEq> PartialEq<Point1<S>> for Point1<S>

source§

fn eq(&self, other: &Point1<S>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> Rem<&'a Point1<f32>> for f32

§

type Output = Point1<f32>

The resulting type after applying the % operator.
source§

fn rem(self, other: &'a Point1<f32>) -> Point1<f32>

Performs the % operation. Read more
source§

impl<'a> Rem<&'a Point1<f64>> for f64

§

type Output = Point1<f64>

The resulting type after applying the % operator.
source§

fn rem(self, other: &'a Point1<f64>) -> Point1<f64>

Performs the % operation. Read more
source§

impl<'a> Rem<&'a Point1<i16>> for i16

§

type Output = Point1<i16>

The resulting type after applying the % operator.
source§

fn rem(self, other: &'a Point1<i16>) -> Point1<i16>

Performs the % operation. Read more
source§

impl<'a> Rem<&'a Point1<i32>> for i32

§

type Output = Point1<i32>

The resulting type after applying the % operator.
source§

fn rem(self, other: &'a Point1<i32>) -> Point1<i32>

Performs the % operation. Read more
source§

impl<'a> Rem<&'a Point1<i64>> for i64

§

type Output = Point1<i64>

The resulting type after applying the % operator.
source§

fn rem(self, other: &'a Point1<i64>) -> Point1<i64>

Performs the % operation. Read more
source§

impl<'a> Rem<&'a Point1<i8>> for i8

§

type Output = Point1<i8>

The resulting type after applying the % operator.
source§

fn rem(self, other: &'a Point1<i8>) -> Point1<i8>

Performs the % operation. Read more
source§

impl<'a> Rem<&'a Point1<isize>> for isize

§

type Output = Point1<isize>

The resulting type after applying the % operator.
source§

fn rem(self, other: &'a Point1<isize>) -> Point1<isize>

Performs the % operation. Read more
source§

impl<'a> Rem<&'a Point1<u16>> for u16

§

type Output = Point1<u16>

The resulting type after applying the % operator.
source§

fn rem(self, other: &'a Point1<u16>) -> Point1<u16>

Performs the % operation. Read more
source§

impl<'a> Rem<&'a Point1<u32>> for u32

§

type Output = Point1<u32>

The resulting type after applying the % operator.
source§

fn rem(self, other: &'a Point1<u32>) -> Point1<u32>

Performs the % operation. Read more
source§

impl<'a> Rem<&'a Point1<u64>> for u64

§

type Output = Point1<u64>

The resulting type after applying the % operator.
source§

fn rem(self, other: &'a Point1<u64>) -> Point1<u64>

Performs the % operation. Read more
source§

impl<'a> Rem<&'a Point1<u8>> for u8

§

type Output = Point1<u8>

The resulting type after applying the % operator.
source§

fn rem(self, other: &'a Point1<u8>) -> Point1<u8>

Performs the % operation. Read more
source§

impl<'a> Rem<&'a Point1<usize>> for usize

§

type Output = Point1<usize>

The resulting type after applying the % operator.
source§

fn rem(self, other: &'a Point1<usize>) -> Point1<usize>

Performs the % operation. Read more
source§

impl Rem<Point1<f32>> for f32

§

type Output = Point1<f32>

The resulting type after applying the % operator.
source§

fn rem(self, other: Point1<f32>) -> Point1<f32>

Performs the % operation. Read more
source§

impl Rem<Point1<f64>> for f64

§

type Output = Point1<f64>

The resulting type after applying the % operator.
source§

fn rem(self, other: Point1<f64>) -> Point1<f64>

Performs the % operation. Read more
source§

impl Rem<Point1<i16>> for i16

§

type Output = Point1<i16>

The resulting type after applying the % operator.
source§

fn rem(self, other: Point1<i16>) -> Point1<i16>

Performs the % operation. Read more
source§

impl Rem<Point1<i32>> for i32

§

type Output = Point1<i32>

The resulting type after applying the % operator.
source§

fn rem(self, other: Point1<i32>) -> Point1<i32>

Performs the % operation. Read more
source§

impl Rem<Point1<i64>> for i64

§

type Output = Point1<i64>

The resulting type after applying the % operator.
source§

fn rem(self, other: Point1<i64>) -> Point1<i64>

Performs the % operation. Read more
source§

impl Rem<Point1<i8>> for i8

§

type Output = Point1<i8>

The resulting type after applying the % operator.
source§

fn rem(self, other: Point1<i8>) -> Point1<i8>

Performs the % operation. Read more
source§

impl Rem<Point1<isize>> for isize

§

type Output = Point1<isize>

The resulting type after applying the % operator.
source§

fn rem(self, other: Point1<isize>) -> Point1<isize>

Performs the % operation. Read more
source§

impl Rem<Point1<u16>> for u16

§

type Output = Point1<u16>

The resulting type after applying the % operator.
source§

fn rem(self, other: Point1<u16>) -> Point1<u16>

Performs the % operation. Read more
source§

impl Rem<Point1<u32>> for u32

§

type Output = Point1<u32>

The resulting type after applying the % operator.
source§

fn rem(self, other: Point1<u32>) -> Point1<u32>

Performs the % operation. Read more
source§

impl Rem<Point1<u64>> for u64

§

type Output = Point1<u64>

The resulting type after applying the % operator.
source§

fn rem(self, other: Point1<u64>) -> Point1<u64>

Performs the % operation. Read more
source§

impl Rem<Point1<u8>> for u8

§

type Output = Point1<u8>

The resulting type after applying the % operator.
source§

fn rem(self, other: Point1<u8>) -> Point1<u8>

Performs the % operation. Read more
source§

impl Rem<Point1<usize>> for usize

§

type Output = Point1<usize>

The resulting type after applying the % operator.
source§

fn rem(self, other: Point1<usize>) -> Point1<usize>

Performs the % operation. Read more
source§

impl<'a, S: BaseNum> Rem<S> for &'a Point1<S>

§

type Output = Point1<S>

The resulting type after applying the % operator.
source§

fn rem(self, other: S) -> Point1<S>

Performs the % operation. Read more
source§

impl<S: BaseNum> Rem<S> for Point1<S>

§

type Output = Point1<S>

The resulting type after applying the % operator.
source§

fn rem(self, other: S) -> Point1<S>

Performs the % operation. Read more
source§

impl<S: BaseNum + RemAssign<S>> RemAssign<S> for Point1<S>

source§

fn rem_assign(&mut self, scalar: S)

Performs the %= operation. Read more
source§

impl<'a, 'b, S: BaseNum> Sub<&'a Point1<S>> for &'b Point1<S>

§

type Output = Vector1<S>

The resulting type after applying the - operator.
source§

fn sub(self, other: &'a Point1<S>) -> Vector1<S>

Performs the - operation. Read more
source§

impl<'a, S: BaseNum> Sub<&'a Point1<S>> for Point1<S>

§

type Output = Vector1<S>

The resulting type after applying the - operator.
source§

fn sub(self, other: &'a Point1<S>) -> Vector1<S>

Performs the - operation. Read more
source§

impl<'a, 'b, S: BaseNum> Sub<&'a Vector1<S>> for &'b Point1<S>

§

type Output = Point1<S>

The resulting type after applying the - operator.
source§

fn sub(self, other: &'a Vector1<S>) -> Point1<S>

Performs the - operation. Read more
source§

impl<'a, S: BaseNum> Sub<&'a Vector1<S>> for Point1<S>

§

type Output = Point1<S>

The resulting type after applying the - operator.
source§

fn sub(self, other: &'a Vector1<S>) -> Point1<S>

Performs the - operation. Read more
source§

impl<'a, S: BaseNum> Sub<Point1<S>> for &'a Point1<S>

§

type Output = Vector1<S>

The resulting type after applying the - operator.
source§

fn sub(self, other: Point1<S>) -> Vector1<S>

Performs the - operation. Read more
source§

impl<S: BaseNum> Sub<Point1<S>> for Point1<S>

§

type Output = Vector1<S>

The resulting type after applying the - operator.
source§

fn sub(self, other: Point1<S>) -> Vector1<S>

Performs the - operation. Read more
source§

impl<'a, S: BaseNum> Sub<Vector1<S>> for &'a Point1<S>

§

type Output = Point1<S>

The resulting type after applying the - operator.
source§

fn sub(self, other: Vector1<S>) -> Point1<S>

Performs the - operation. Read more
source§

impl<S: BaseNum> Sub<Vector1<S>> for Point1<S>

§

type Output = Point1<S>

The resulting type after applying the - operator.
source§

fn sub(self, other: Vector1<S>) -> Point1<S>

Performs the - operation. Read more
source§

impl<S: BaseNum + SubAssign<S>> SubAssign<Vector1<S>> for Point1<S>

source§

fn sub_assign(&mut self, vector: Vector1<S>)

Performs the -= operation. Read more
source§

impl<S: Copy> Copy for Point1<S>

source§

impl<S: Eq> Eq for Point1<S>

source§

impl<S> StructuralEq for Point1<S>

source§

impl<S> StructuralPartialEq for Point1<S>

Auto Trait Implementations§

§

impl<S> RefUnwindSafe for Point1<S>where S: RefUnwindSafe,

§

impl<S> Send for Point1<S>where S: Send,

§

impl<S> Sync for Point1<S>where S: Sync,

§

impl<S> Unpin for Point1<S>where S: Unpin,

§

impl<S> UnwindSafe for Point1<S>where S: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> LowerBounded for Twhere T: Bounded,

source§

fn min_value() -> T

Returns the smallest finite number this type can represent
source§

impl<T> ToOwned for Twhere T: Clone,

§

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 Twhere 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 Twhere 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<T> UpperBounded for Twhere T: Bounded,

source§

fn max_value() -> T

Returns the largest finite number this type can represent
source§

impl<T, Rhs> NumAssignOps<Rhs> for Twhere T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,

source§

impl<T, Rhs, Output> NumOps<Rhs, Output> for Twhere T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,