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