pub struct AddCustomerRequest<'a> {
pub terminal_key: &'a str,
pub customer_key: &'a str,
pub email: Option<&'a str>,
pub phone: Option<&'a str>,
pub token: String,
}Fields§
§terminal_key: &'a str§customer_key: &'a str§email: Option<&'a str>§phone: Option<&'a str>§token: StringTrait Implementations§
Source§impl<'a> Debug for AddCustomerRequest<'a>
impl<'a> Debug for AddCustomerRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for AddCustomerRequest<'a>
impl<'a> RefUnwindSafe for AddCustomerRequest<'a>
impl<'a> Send for AddCustomerRequest<'a>
impl<'a> Sync for AddCustomerRequest<'a>
impl<'a> Unpin for AddCustomerRequest<'a>
impl<'a> UnwindSafe for AddCustomerRequest<'a>
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