pub enum UpdateMonitorError {
APIErrorResponse(APIErrorResponse),
UnknownValue(Value),
}
Expand description
UpdateMonitorError is a struct for typed errors of method MonitorsAPI::update_monitor
Variants§
APIErrorResponse(APIErrorResponse)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for UpdateMonitorError
impl Clone for UpdateMonitorError
Source§fn clone(&self) -> UpdateMonitorError
fn clone(&self) -> UpdateMonitorError
Returns a copy 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 moreSource§impl Debug for UpdateMonitorError
impl Debug for UpdateMonitorError
Source§impl<'de> Deserialize<'de> for UpdateMonitorError
impl<'de> Deserialize<'de> for UpdateMonitorError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UpdateMonitorError
impl RefUnwindSafe for UpdateMonitorError
impl Send for UpdateMonitorError
impl Sync for UpdateMonitorError
impl Unpin for UpdateMonitorError
impl UnwindSafe for UpdateMonitorError
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