Struct square_api_client::models::CashPaymentDetails
source · [−]pub struct CashPaymentDetails {
pub buyer_supplied_money: Option<Money>,
pub change_back_money: Option<Money>,
}
Expand description
Stores details about a cash payment.
Contains only non-confidential information. For more information, see Take Cash Payments.
Fields
buyer_supplied_money: Option<Money>
The amount and currency of the money supplied by the buyer.
change_back_money: Option<Money>
The amount of change due back to the buyer. This read-only field is calculated from the
amount_money
and buyer_supplied_money
fields.
Trait Implementations
sourceimpl Clone for CashPaymentDetails
impl Clone for CashPaymentDetails
sourcefn clone(&self) -> CashPaymentDetails
fn clone(&self) -> CashPaymentDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CashPaymentDetails
impl Debug for CashPaymentDetails
sourceimpl Default for CashPaymentDetails
impl Default for CashPaymentDetails
sourcefn default() -> CashPaymentDetails
fn default() -> CashPaymentDetails
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for CashPaymentDetails
impl<'de> Deserialize<'de> for CashPaymentDetails
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
sourceimpl PartialEq<CashPaymentDetails> for CashPaymentDetails
impl PartialEq<CashPaymentDetails> for CashPaymentDetails
sourcefn eq(&self, other: &CashPaymentDetails) -> bool
fn eq(&self, other: &CashPaymentDetails) -> bool
sourceimpl Serialize for CashPaymentDetails
impl Serialize for CashPaymentDetails
impl Eq for CashPaymentDetails
impl StructuralEq for CashPaymentDetails
impl StructuralPartialEq for CashPaymentDetails
Auto Trait Implementations
impl RefUnwindSafe for CashPaymentDetails
impl Send for CashPaymentDetails
impl Sync for CashPaymentDetails
impl Unpin for CashPaymentDetails
impl UnwindSafe for CashPaymentDetails
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
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.