pub enum UpdateLogsIndexError {
LogsAPIErrorResponse(LogsAPIErrorResponse),
APIErrorResponse(APIErrorResponse),
UnknownValue(Value),
}
Expand description
UpdateLogsIndexError is a struct for typed errors of method LogsIndexesAPI::update_logs_index
Variants§
Trait Implementations§
Source§impl Clone for UpdateLogsIndexError
impl Clone for UpdateLogsIndexError
Source§fn clone(&self) -> UpdateLogsIndexError
fn clone(&self) -> UpdateLogsIndexError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateLogsIndexError
impl Debug for UpdateLogsIndexError
Source§impl<'de> Deserialize<'de> for UpdateLogsIndexError
impl<'de> Deserialize<'de> for UpdateLogsIndexError
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 UpdateLogsIndexError
impl RefUnwindSafe for UpdateLogsIndexError
impl Send for UpdateLogsIndexError
impl Sync for UpdateLogsIndexError
impl Unpin for UpdateLogsIndexError
impl UnwindSafe for UpdateLogsIndexError
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