pub struct AddCustomerResponse {
pub success: bool,
pub error_code: Option<String>,
pub message: Option<String>,
}Fields§
§success: bool§error_code: Option<String>§message: Option<String>Trait Implementations§
Source§impl Debug for AddCustomerResponse
impl Debug for AddCustomerResponse
Source§impl<'de> Deserialize<'de> for AddCustomerResponse
impl<'de> Deserialize<'de> for AddCustomerResponse
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
Auto Trait Implementations§
impl Freeze for AddCustomerResponse
impl RefUnwindSafe for AddCustomerResponse
impl Send for AddCustomerResponse
impl Sync for AddCustomerResponse
impl Unpin for AddCustomerResponse
impl UnwindSafe for AddCustomerResponse
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