pub struct DeleteCustomerResponse {
pub errors: Option<Vec<Error>>,
}Expand description
DeleteCustomerResponse : Defines the fields that are included in the response body of a request to the DeleteCustomer endpoint.
Fields§
§errors: Option<Vec<Error>>Any errors that occurred during the request.
Implementations§
Source§impl DeleteCustomerResponse
impl DeleteCustomerResponse
Sourcepub fn new() -> DeleteCustomerResponse
pub fn new() -> DeleteCustomerResponse
Defines the fields that are included in the response body of a request to the DeleteCustomer endpoint.
Trait Implementations§
Source§impl Clone for DeleteCustomerResponse
impl Clone for DeleteCustomerResponse
Source§fn clone(&self) -> DeleteCustomerResponse
fn clone(&self) -> DeleteCustomerResponse
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 DeleteCustomerResponse
impl Debug for DeleteCustomerResponse
Source§impl Default for DeleteCustomerResponse
impl Default for DeleteCustomerResponse
Source§fn default() -> DeleteCustomerResponse
fn default() -> DeleteCustomerResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteCustomerResponse
impl<'de> Deserialize<'de> for DeleteCustomerResponse
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
Source§impl PartialEq for DeleteCustomerResponse
impl PartialEq for DeleteCustomerResponse
Source§impl Serialize for DeleteCustomerResponse
impl Serialize for DeleteCustomerResponse
impl StructuralPartialEq for DeleteCustomerResponse
Auto Trait Implementations§
impl Freeze for DeleteCustomerResponse
impl RefUnwindSafe for DeleteCustomerResponse
impl Send for DeleteCustomerResponse
impl Sync for DeleteCustomerResponse
impl Unpin for DeleteCustomerResponse
impl UnsafeUnpin for DeleteCustomerResponse
impl UnwindSafe for DeleteCustomerResponse
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