pub enum DeleteLogsIndexError {
APIErrorResponse(APIErrorResponse),
LogsAPIErrorResponse(LogsAPIErrorResponse),
UnknownValue(Value),
}
Expand description
DeleteLogsIndexError is a struct for typed errors of method LogsIndexesAPI::delete_logs_index
Variants§
Trait Implementations§
Source§impl Clone for DeleteLogsIndexError
impl Clone for DeleteLogsIndexError
Source§fn clone(&self) -> DeleteLogsIndexError
fn clone(&self) -> DeleteLogsIndexError
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 moreSource§impl Debug for DeleteLogsIndexError
impl Debug for DeleteLogsIndexError
Source§impl<'de> Deserialize<'de> for DeleteLogsIndexError
impl<'de> Deserialize<'de> for DeleteLogsIndexError
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 DeleteLogsIndexError
impl RefUnwindSafe for DeleteLogsIndexError
impl Send for DeleteLogsIndexError
impl Sync for DeleteLogsIndexError
impl Unpin for DeleteLogsIndexError
impl UnwindSafe for DeleteLogsIndexError
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