pub struct LiveChatFanFundingEventDetails {
pub amount_display_string: Option<String>,
pub amount_micros: Option<u64>,
pub currency: Option<String>,
pub user_comment: Option<String>,
}
Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§amount_display_string: Option<String>
A rendered string that displays the fund amount and currency to the user.
amount_micros: Option<u64>
The amount of the fund.
currency: Option<String>
The currency in which the fund was made.
user_comment: Option<String>
The comment added by the user to this fan funding event.
Trait Implementations§
source§impl Clone for LiveChatFanFundingEventDetails
impl Clone for LiveChatFanFundingEventDetails
source§fn clone(&self) -> LiveChatFanFundingEventDetails
fn clone(&self) -> LiveChatFanFundingEventDetails
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 Default for LiveChatFanFundingEventDetails
impl Default for LiveChatFanFundingEventDetails
source§fn default() -> LiveChatFanFundingEventDetails
fn default() -> LiveChatFanFundingEventDetails
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LiveChatFanFundingEventDetails
impl<'de> Deserialize<'de> for LiveChatFanFundingEventDetails
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
impl Part for LiveChatFanFundingEventDetails
Auto Trait Implementations§
impl RefUnwindSafe for LiveChatFanFundingEventDetails
impl Send for LiveChatFanFundingEventDetails
impl Sync for LiveChatFanFundingEventDetails
impl Unpin for LiveChatFanFundingEventDetails
impl UnwindSafe for LiveChatFanFundingEventDetails
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