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