#[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: SImplementations§
Trait Implementations§
Source§impl<S> AbsDiffEq for Point1<S>where
S: BaseFloat,
impl<S> AbsDiffEq for Point1<S>where
S: BaseFloat,
Source§fn default_epsilon() -> <S as AbsDiffEq>::Epsilon
fn default_epsilon() -> <S as AbsDiffEq>::Epsilon
The default tolerance to use when testing values that are close together. Read more
Source§fn abs_diff_eq(
&self,
other: &Point1<S>,
epsilon: <S as AbsDiffEq>::Epsilon,
) -> bool
fn abs_diff_eq( &self, other: &Point1<S>, epsilon: <S as AbsDiffEq>::Epsilon, ) -> bool
A test for equality that uses the absolute difference to compute the approximate
equality of two numbers.
Source§fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool
fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool
The inverse of
AbsDiffEq::abs_diff_eq.Source§impl<S> AddAssign<Vector1<S>> for Point1<S>
impl<S> AddAssign<Vector1<S>> for Point1<S>
Source§fn add_assign(&mut self, vector: Vector1<S>)
fn add_assign(&mut self, vector: Vector1<S>)
Performs the
+= operation. Read moreSource§impl<S> Array for Point1<S>where
S: BaseNum,
impl<S> Array for Point1<S>where
S: BaseNum,
type Element = S
Source§fn from_value(scalar: S) -> Point1<S>
fn from_value(scalar: S) -> Point1<S>
Construct a vector from a single value, replicating it. Read more
Source§fn as_mut_ptr(&mut self) -> *mut Self::Element
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)
fn swap_elements(&mut self, i: usize, j: usize)
Swap the elements at indices
i and j in-place.Source§impl<S> DivAssign<S> for Point1<S>
impl<S> DivAssign<S> for Point1<S>
Source§fn div_assign(&mut self, scalar: S)
fn div_assign(&mut self, scalar: S)
Performs the
/= operation. Read moreSource§impl<S> ElementWise<S> for Point1<S>where
S: BaseNum,
impl<S> ElementWise<S> for Point1<S>where
S: BaseNum,
fn add_element_wise(self, rhs: S) -> Point1<S>
fn sub_element_wise(self, rhs: S) -> Point1<S>
fn mul_element_wise(self, rhs: S) -> Point1<S>
fn div_element_wise(self, rhs: S) -> Point1<S>
fn rem_element_wise(self, rhs: S) -> Point1<S>
fn add_assign_element_wise(&mut self, rhs: S)
fn sub_assign_element_wise(&mut self, rhs: S)
fn mul_assign_element_wise(&mut self, rhs: S)
fn div_assign_element_wise(&mut self, rhs: S)
fn rem_assign_element_wise(&mut self, rhs: S)
Source§impl<S> ElementWise for Point1<S>where
S: BaseNum,
impl<S> ElementWise for Point1<S>where
S: BaseNum,
fn add_element_wise(self, rhs: Point1<S>) -> Point1<S>
fn sub_element_wise(self, rhs: Point1<S>) -> Point1<S>
fn mul_element_wise(self, rhs: Point1<S>) -> Point1<S>
fn div_element_wise(self, rhs: Point1<S>) -> Point1<S>
fn rem_element_wise(self, rhs: Point1<S>) -> Point1<S>
fn add_assign_element_wise(&mut self, rhs: Point1<S>)
fn sub_assign_element_wise(&mut self, rhs: Point1<S>)
fn mul_assign_element_wise(&mut self, rhs: Point1<S>)
fn div_assign_element_wise(&mut self, rhs: Point1<S>)
fn rem_assign_element_wise(&mut self, rhs: Point1<S>)
Source§impl<S> EuclideanSpace for Point1<S>where
S: BaseNum,
impl<S> EuclideanSpace for Point1<S>where
S: BaseNum,
Source§impl<S> MetricSpace for Point1<S>where
S: BaseFloat,
impl<S> MetricSpace for Point1<S>where
S: BaseFloat,
Source§impl<S> MulAssign<S> for Point1<S>
impl<S> MulAssign<S> for Point1<S>
Source§fn mul_assign(&mut self, scalar: S)
fn mul_assign(&mut self, scalar: S)
Performs the
*= operation. Read moreSource§impl<S> RelativeEq for Point1<S>where
S: BaseFloat,
impl<S> RelativeEq for Point1<S>where
S: BaseFloat,
Source§fn default_max_relative() -> <S as AbsDiffEq>::Epsilon
fn default_max_relative() -> <S as AbsDiffEq>::Epsilon
The default relative tolerance for testing values that are far-apart. Read more
Source§fn relative_eq(
&self,
other: &Point1<S>,
epsilon: <S as AbsDiffEq>::Epsilon,
max_relative: <S as AbsDiffEq>::Epsilon,
) -> bool
fn relative_eq( &self, other: &Point1<S>, epsilon: <S as AbsDiffEq>::Epsilon, max_relative: <S as AbsDiffEq>::Epsilon, ) -> bool
A test for equality that uses a relative comparison if the values are far apart.
Source§fn relative_ne(
&self,
other: &Rhs,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon,
) -> bool
fn relative_ne( &self, other: &Rhs, epsilon: Self::Epsilon, max_relative: Self::Epsilon, ) -> bool
The inverse of
RelativeEq::relative_eq.Source§impl<S> RemAssign<S> for Point1<S>
impl<S> RemAssign<S> for Point1<S>
Source§fn rem_assign(&mut self, scalar: S)
fn rem_assign(&mut self, scalar: S)
Performs the
%= operation. Read moreSource§impl<S> SubAssign<Vector1<S>> for Point1<S>
impl<S> SubAssign<Vector1<S>> for Point1<S>
Source§fn sub_assign(&mut self, vector: Vector1<S>)
fn sub_assign(&mut self, vector: Vector1<S>)
Performs the
-= operation. Read moreSource§impl<S> UlpsEq for Point1<S>where
S: BaseFloat,
impl<S> UlpsEq for Point1<S>where
S: BaseFloat,
Source§fn default_max_ulps() -> u32
fn default_max_ulps() -> u32
The default ULPs to tolerate when testing values that are far-apart. Read more
impl<S> Copy for Point1<S>where
S: Copy,
impl<S> Eq for Point1<S>where
S: Eq,
impl<S> StructuralPartialEq for Point1<S>
Auto Trait Implementations§
impl<S> Freeze for Point1<S>where
S: Freeze,
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> LowerBounded for Twhere
T: Bounded,
impl<T> LowerBounded for Twhere
T: Bounded,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
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
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
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.