pub struct GetAwardInfoResponse {
pub id: String,
pub coin: String,
pub amount_unit: String,
pub product_line: String,
pub sub_product_line: String,
pub total_amount: String,
pub used_amount: String,
}Expand description
Response for fetching award info.
Fields§
§id: String§coin: String§amount_unit: String§product_line: String§sub_product_line: String§total_amount: String§used_amount: StringTrait Implementations§
Source§impl Clone for GetAwardInfoResponse
impl Clone for GetAwardInfoResponse
Source§fn clone(&self) -> GetAwardInfoResponse
fn clone(&self) -> GetAwardInfoResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetAwardInfoResponse
impl Debug for GetAwardInfoResponse
Source§impl<'de> Deserialize<'de> for GetAwardInfoResponse
impl<'de> Deserialize<'de> for GetAwardInfoResponse
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
Auto Trait Implementations§
impl Freeze for GetAwardInfoResponse
impl RefUnwindSafe for GetAwardInfoResponse
impl Send for GetAwardInfoResponse
impl Sync for GetAwardInfoResponse
impl Unpin for GetAwardInfoResponse
impl UnsafeUnpin for GetAwardInfoResponse
impl UnwindSafe for GetAwardInfoResponse
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