#[repr(transparent)]pub struct RawDistortion(u64);
Tuple Fields§
§0: u64
Implementations§
Trait Implementations§
Source§impl Mul<DistortionScale> for RawDistortion
impl Mul<DistortionScale> for RawDistortion
Source§type Output = Distortion
type Output = Distortion
The resulting type after applying the
*
operator.Source§fn mul(self, rhs: DistortionScale) -> Distortion
fn mul(self, rhs: DistortionScale) -> Distortion
Performs the
*
operation. Read moreAuto Trait Implementations§
impl Freeze for RawDistortion
impl RefUnwindSafe for RawDistortion
impl Send for RawDistortion
impl Sync for RawDistortion
impl Unpin for RawDistortion
impl UnwindSafe for RawDistortion
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> 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