pub struct AvgRatingValue(/* private fields */);
Implementations§
Trait Implementations§
Source§impl Add for AvgRatingValue
impl Add for AvgRatingValue
Source§impl AddAssign for AvgRatingValue
impl AddAssign for AvgRatingValue
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+=
operation. Read moreSource§impl Clone for AvgRatingValue
impl Clone for AvgRatingValue
Source§fn clone(&self) -> AvgRatingValue
fn clone(&self) -> AvgRatingValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AvgRatingValue
impl Debug for AvgRatingValue
Source§impl Default for AvgRatingValue
impl Default for AvgRatingValue
Source§fn default() -> AvgRatingValue
fn default() -> AvgRatingValue
Returns the “default value” for a type. Read more
Source§impl Div<f64> for AvgRatingValue
impl Div<f64> for AvgRatingValue
Source§impl DivAssign<f64> for AvgRatingValue
impl DivAssign<f64> for AvgRatingValue
Source§fn div_assign(&mut self, rhs: f64)
fn div_assign(&mut self, rhs: f64)
Performs the
/=
operation. Read moreSource§impl From<AvgRatingValue> for f64
impl From<AvgRatingValue> for f64
Source§fn from(from: AvgRatingValue) -> Self
fn from(from: AvgRatingValue) -> Self
Converts to this type from the input type.
Source§impl From<RatingValue> for AvgRatingValue
impl From<RatingValue> for AvgRatingValue
Source§fn from(from: RatingValue) -> Self
fn from(from: RatingValue) -> Self
Converts to this type from the input type.
Source§impl From<f64> for AvgRatingValue
impl From<f64> for AvgRatingValue
Source§impl PartialEq for AvgRatingValue
impl PartialEq for AvgRatingValue
Source§impl PartialOrd for AvgRatingValue
impl PartialOrd for AvgRatingValue
impl Copy for AvgRatingValue
impl StructuralPartialEq for AvgRatingValue
Auto Trait Implementations§
impl Freeze for AvgRatingValue
impl RefUnwindSafe for AvgRatingValue
impl Send for AvgRatingValue
impl Sync for AvgRatingValue
impl Unpin for AvgRatingValue
impl UnwindSafe for AvgRatingValue
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