pub struct IncomeReward {
pub reward_category: i8,
pub reward_type: i8,
pub amount: i32,
pub product_code: String,
}
Fields§
§reward_category: i8
§reward_type: i8
§amount: i32
§product_code: String
Trait Implementations§
Source§impl Clone for IncomeReward
impl Clone for IncomeReward
Source§fn clone(&self) -> IncomeReward
fn clone(&self) -> IncomeReward
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 IncomeReward
impl Debug for IncomeReward
Source§impl Default for IncomeReward
impl Default for IncomeReward
Source§fn default() -> IncomeReward
fn default() -> IncomeReward
Returns the “default value” for a type. Read more
Source§impl PacketVariable for IncomeReward
impl PacketVariable for IncomeReward
Source§impl PartialEq for IncomeReward
impl PartialEq for IncomeReward
impl StructuralPartialEq for IncomeReward
Auto Trait Implementations§
impl Freeze for IncomeReward
impl RefUnwindSafe for IncomeReward
impl Send for IncomeReward
impl Sync for IncomeReward
impl Unpin for IncomeReward
impl UnwindSafe for IncomeReward
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