pub enum DeleteAlertResponse {
Ok(AlertDeletionResponse),
Unauthorized,
InternalServerError,
Unknown,
}Expand description
Response types for deleteAlert
Variants§
Ok(AlertDeletionResponse)
200: An object containing details on the deleted endpoint.
401: Invalid or expired access token
InternalServerError
500: Internal Server Error; Unable to delete alert in case when provided alert id doesn’t exist
Unknown
default: Unknown response
Trait Implementations§
Source§impl Clone for DeleteAlertResponse
impl Clone for DeleteAlertResponse
Source§fn clone(&self) -> DeleteAlertResponse
fn clone(&self) -> DeleteAlertResponse
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 DeleteAlertResponse
impl RefUnwindSafe for DeleteAlertResponse
impl Send for DeleteAlertResponse
impl Sync for DeleteAlertResponse
impl Unpin for DeleteAlertResponse
impl UnsafeUnpin for DeleteAlertResponse
impl UnwindSafe for DeleteAlertResponse
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