pub struct DeleteContactParams {
pub customer_id: String,
pub contact_id: String,
}
Expand description
struct for passing parameters to the method delete_contact
Fields§
§customer_id: String
Alphanumeric string identifying the customer.
contact_id: String
An alphanumeric string identifying the customer contact.
Trait Implementations§
Source§impl Clone for DeleteContactParams
impl Clone for DeleteContactParams
Source§fn clone(&self) -> DeleteContactParams
fn clone(&self) -> DeleteContactParams
Returns a duplicate of the value. Read more
1.0.0 · 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 DeleteContactParams
impl Debug for DeleteContactParams
Source§impl Default for DeleteContactParams
impl Default for DeleteContactParams
Source§fn default() -> DeleteContactParams
fn default() -> DeleteContactParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeleteContactParams
impl RefUnwindSafe for DeleteContactParams
impl Send for DeleteContactParams
impl Sync for DeleteContactParams
impl Unpin for DeleteContactParams
impl UnwindSafe for DeleteContactParams
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