pub enum SearchWithIndexError {
Status404(ErrorResponse),
Status400(ErrorResponse),
DefaultResponse(ResponseBody),
UnknownValue(Value),
}Expand description
Struct for typed errors of method [search_with_index]
Variants§
Status404(ErrorResponse)
Status400(ErrorResponse)
DefaultResponse(ResponseBody)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for SearchWithIndexError
impl Clone for SearchWithIndexError
Source§fn clone(&self) -> SearchWithIndexError
fn clone(&self) -> SearchWithIndexError
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 moreSource§impl Debug for SearchWithIndexError
impl Debug for SearchWithIndexError
Source§impl<'de> Deserialize<'de> for SearchWithIndexError
impl<'de> Deserialize<'de> for SearchWithIndexError
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 SearchWithIndexError
impl RefUnwindSafe for SearchWithIndexError
impl Send for SearchWithIndexError
impl Sync for SearchWithIndexError
impl Unpin for SearchWithIndexError
impl UnsafeUnpin for SearchWithIndexError
impl UnwindSafe for SearchWithIndexError
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