pub struct Points {
pub points_number: Option<i32>,
pub points_monetary_value: Option<Box<MoneyType>>,
}Fields
points_number: Option<i32>The number of points.
points_monetary_value: Option<Box<MoneyType>>Implementations
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Points
impl<'de> Deserialize<'de> for Points
sourcefn 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
impl StructuralPartialEq for Points
Auto Trait Implementations
impl RefUnwindSafe for Points
impl Send for Points
impl Sync for Points
impl Unpin for Points
impl UnwindSafe for Points
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more