pub struct Payments {
pub items: Option<Vec<Payment>>,
pub kind: Option<String>,
}Expand description
There is no detailed description.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- payments list accounts (response)
- list payments (response)
Fields§
§items: Option<Vec<Payment>>The list of Payments for the account. One or both of a) the account’s most recent payment; and b) the account’s upcoming payment.
kind: Option<String>Kind of list this is, in this case adsense#payments.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Payments
impl<'de> Deserialize<'de> for Payments
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 ResponseResult for Payments
Auto Trait Implementations§
impl Freeze for Payments
impl RefUnwindSafe for Payments
impl Send for Payments
impl Sync for Payments
impl Unpin for Payments
impl UnsafeUnpin for Payments
impl UnwindSafe for Payments
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