[][src]Struct apple_app_store_receipts::objects::request_body::RequestBody

pub struct RequestBody<'a> {
    pub receipt_data: &'a str,
    pub password: &'a str,
    pub exclude_old_transactions: Option<bool>,
}

Fields

receipt_data: &'a strpassword: &'a strexclude_old_transactions: Option<bool>

Implementations

impl<'a> RequestBody<'a>[src]

pub fn new(
    receipt_data: &'a str,
    password: &'a str,
    exclude_old_transactions: Option<bool>
) -> Self
[src]

Trait Implementations

impl<'a> Debug for RequestBody<'a>[src]

impl<'a> Serialize for RequestBody<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for RequestBody<'a>

impl<'a> Send for RequestBody<'a>

impl<'a> Sync for RequestBody<'a>

impl<'a> Unpin for RequestBody<'a>

impl<'a> UnwindSafe for RequestBody<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.