pub enum PostExecuteApiError {
Status400(PostExecuteResponse400),
Status500(PostExecuteResponse500),
}Expand description
Typed error responses for PostExecute. One variant per declared non-2xx response.
Variants§
Status400(PostExecuteResponse400)
Status500(PostExecuteResponse500)
Trait Implementations§
Source§impl Clone for PostExecuteApiError
impl Clone for PostExecuteApiError
Source§fn clone(&self) -> PostExecuteApiError
fn clone(&self) -> PostExecuteApiError
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 moreAuto Trait Implementations§
impl Freeze for PostExecuteApiError
impl RefUnwindSafe for PostExecuteApiError
impl Send for PostExecuteApiError
impl Sync for PostExecuteApiError
impl Unpin for PostExecuteApiError
impl UnsafeUnpin for PostExecuteApiError
impl UnwindSafe for PostExecuteApiError
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