pub struct PlatformEarningFeeSource {
pub charge: Option<String>,
pub payout: Option<String>,
pub type_: PlatformEarningFeeSourceType,
}Fields§
§charge: Option<String>Charge ID that created this application fee.
payout: Option<String>Payout ID that created this application fee.
type_: PlatformEarningFeeSourceTypeType of object that created the application fee.
Trait Implementations§
Source§impl Clone for PlatformEarningFeeSource
impl Clone for PlatformEarningFeeSource
Source§fn clone(&self) -> PlatformEarningFeeSource
fn clone(&self) -> PlatformEarningFeeSource
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 PlatformEarningFeeSource
impl Debug for PlatformEarningFeeSource
Source§impl FromValueOpt for PlatformEarningFeeSource
impl FromValueOpt for PlatformEarningFeeSource
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PlatformEarningFeeSource
impl PartialEq for PlatformEarningFeeSource
Source§fn eq(&self, other: &PlatformEarningFeeSource) -> bool
fn eq(&self, other: &PlatformEarningFeeSource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PlatformEarningFeeSource
impl StructuralPartialEq for PlatformEarningFeeSource
Auto Trait Implementations§
impl Freeze for PlatformEarningFeeSource
impl RefUnwindSafe for PlatformEarningFeeSource
impl Send for PlatformEarningFeeSource
impl Sync for PlatformEarningFeeSource
impl Unpin for PlatformEarningFeeSource
impl UnsafeUnpin for PlatformEarningFeeSource
impl UnwindSafe for PlatformEarningFeeSource
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