Trait num_traits::identities::One [−][src]
pub trait One: Sized + Mul<Self, Output = Self> { fn one() -> Self; fn is_one(&self) -> bool
where
Self: PartialEq, { ... } }
Defines a multiplicative identity element for Self
.
Required Methods
fn one() -> Self
Provided Methods
fn is_one(&self) -> bool where
Self: PartialEq,
Self: PartialEq,
Returns true
if self
is equal to the multiplicative identity.
For performance reasons, it's best to implement this manually.
After a semver bump, this method will be required, and the
where Self: PartialEq
bound will be removed.
Implementations on Foreign Types
impl<T: One> One for Wrapping<T> where
Wrapping<T>: Mul<Output = Wrapping<T>>,
[src]
impl<T: One> One for Wrapping<T> where
Wrapping<T>: Mul<Output = Wrapping<T>>,
Implementors
impl One for usize
impl One for u8
impl One for u16
impl One for u32
impl One for u64
impl One for u128
impl One for isize
impl One for i8
impl One for i16
impl One for i32
impl One for i64
impl One for i128
impl One for f32
impl One for f64