pub struct IntensityIndex(/* private fields */);Trait Implementations§
Source§impl Clone for IntensityIndex
impl Clone for IntensityIndex
Source§fn clone(&self) -> IntensityIndex
fn clone(&self) -> IntensityIndex
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ConvertibleTo<Intensity> for IntensityIndex
impl ConvertibleTo<Intensity> for IntensityIndex
Source§impl ConvertibleTo<IntensityIndex> for Intensity
impl ConvertibleTo<IntensityIndex> for Intensity
impl Copy for IntensityIndex
Source§impl Debug for IntensityIndex
impl Debug for IntensityIndex
Source§impl Display for IntensityIndex
impl Display for IntensityIndex
impl Eq for IntensityIndex
Source§impl From<IntensityIndex> for u32
impl From<IntensityIndex> for u32
Source§fn from(index: IntensityIndex) -> Self
fn from(index: IntensityIndex) -> Self
Converts to this type from the input type.
Source§impl From<IntensityIndex> for u64
impl From<IntensityIndex> for u64
Source§fn from(index: IntensityIndex) -> Self
fn from(index: IntensityIndex) -> Self
Converts to this type from the input type.
Source§impl From<IntensityIndex> for usize
impl From<IntensityIndex> for usize
Source§fn from(index: IntensityIndex) -> Self
fn from(index: IntensityIndex) -> Self
Converts to this type from the input type.
Source§impl From<IntensityIndex> for i64
impl From<IntensityIndex> for i64
Source§fn from(index: IntensityIndex) -> Self
fn from(index: IntensityIndex) -> Self
Converts to this type from the input type.
Source§impl From<IntensityIndex> for f64
impl From<IntensityIndex> for f64
Source§fn from(index: IntensityIndex) -> Self
fn from(index: IntensityIndex) -> Self
Converts to this type from the input type.
Source§impl From<u8> for IntensityIndex
impl From<u8> for IntensityIndex
Source§impl From<u16> for IntensityIndex
impl From<u16> for IntensityIndex
Source§impl Hash for IntensityIndex
impl Hash for IntensityIndex
Source§impl Ord for IntensityIndex
impl Ord for IntensityIndex
Source§fn cmp(&self, other: &IntensityIndex) -> Ordering
fn cmp(&self, other: &IntensityIndex) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IntensityIndex
impl PartialEq for IntensityIndex
Source§fn eq(&self, other: &IntensityIndex) -> bool
fn eq(&self, other: &IntensityIndex) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for IntensityIndex
impl PartialOrd for IntensityIndex
impl StructuralPartialEq for IntensityIndex
Source§impl TryFrom<IntensityIndex> for i32
impl TryFrom<IntensityIndex> for i32
Source§type Error = CoordinateError
type Error = CoordinateError
The type returned in the event of a conversion error.
Source§impl TryFrom<i8> for IntensityIndex
impl TryFrom<i8> for IntensityIndex
Source§impl TryFrom<i16> for IntensityIndex
impl TryFrom<i16> for IntensityIndex
Source§impl TryFrom<i32> for IntensityIndex
impl TryFrom<i32> for IntensityIndex
Source§impl TryFrom<i64> for IntensityIndex
impl TryFrom<i64> for IntensityIndex
Source§impl TryFrom<u32> for IntensityIndex
impl TryFrom<u32> for IntensityIndex
Source§impl TryFrom<u64> for IntensityIndex
impl TryFrom<u64> for IntensityIndex
Auto Trait Implementations§
impl Freeze for IntensityIndex
impl RefUnwindSafe for IntensityIndex
impl Send for IntensityIndex
impl Sync for IntensityIndex
impl Unpin for IntensityIndex
impl UnsafeUnpin for IntensityIndex
impl UnwindSafe for IntensityIndex
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more