pub enum PostContactsCreateErrors {
Status400(ContactFailureResponse),
Status405(ContactFailureResponse),
Status409(ContactFailureResponse),
}Expand description
Unifies the possible errors from post_contacts_create
Variants§
Status400(ContactFailureResponse)
Expected response body for status code 400
Status405(ContactFailureResponse)
Expected response body for status code 405
Status409(ContactFailureResponse)
Expected response body for status code 409
Trait Implementations§
Source§impl Clone for PostContactsCreateErrors
impl Clone for PostContactsCreateErrors
Source§fn clone(&self) -> PostContactsCreateErrors
fn clone(&self) -> PostContactsCreateErrors
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 moreAuto Trait Implementations§
impl Freeze for PostContactsCreateErrors
impl RefUnwindSafe for PostContactsCreateErrors
impl Send for PostContactsCreateErrors
impl Sync for PostContactsCreateErrors
impl Unpin for PostContactsCreateErrors
impl UnwindSafe for PostContactsCreateErrors
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