pub struct GetTerminalCheckoutResponse {
pub errors: Option<Vec<Error>>,
pub checkout: Option<Box<TerminalCheckout>>,
}Fields§
§errors: Option<Vec<Error>>Information about errors encountered during the request.
checkout: Option<Box<TerminalCheckout>>Implementations§
Source§impl GetTerminalCheckoutResponse
impl GetTerminalCheckoutResponse
pub fn new() -> GetTerminalCheckoutResponse
Trait Implementations§
Source§impl Clone for GetTerminalCheckoutResponse
impl Clone for GetTerminalCheckoutResponse
Source§fn clone(&self) -> GetTerminalCheckoutResponse
fn clone(&self) -> GetTerminalCheckoutResponse
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 GetTerminalCheckoutResponse
impl Debug for GetTerminalCheckoutResponse
Source§impl Default for GetTerminalCheckoutResponse
impl Default for GetTerminalCheckoutResponse
Source§fn default() -> GetTerminalCheckoutResponse
fn default() -> GetTerminalCheckoutResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetTerminalCheckoutResponse
impl<'de> Deserialize<'de> for GetTerminalCheckoutResponse
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 StructuralPartialEq for GetTerminalCheckoutResponse
Auto Trait Implementations§
impl Freeze for GetTerminalCheckoutResponse
impl RefUnwindSafe for GetTerminalCheckoutResponse
impl Send for GetTerminalCheckoutResponse
impl Sync for GetTerminalCheckoutResponse
impl Unpin for GetTerminalCheckoutResponse
impl UnsafeUnpin for GetTerminalCheckoutResponse
impl UnwindSafe for GetTerminalCheckoutResponse
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