pub struct PointsEarned {
pub available: f32,
pub earned: f32,
}
Expand description
Jig play session module points earned
Fields§
§available: f32
available points to earn
earned: f32
points actually earned
Implementations§
Trait Implementations§
Source§impl Clone for PointsEarned
impl Clone for PointsEarned
Source§fn clone(&self) -> PointsEarned
fn clone(&self) -> PointsEarned
Returns a copy 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 PointsEarned
impl Debug for PointsEarned
Source§impl<'de> Deserialize<'de> for PointsEarned
impl<'de> Deserialize<'de> for PointsEarned
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for PointsEarned
impl Display for PointsEarned
Auto Trait Implementations§
impl Freeze for PointsEarned
impl RefUnwindSafe for PointsEarned
impl Send for PointsEarned
impl Sync for PointsEarned
impl Unpin for PointsEarned
impl UnwindSafe for PointsEarned
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