pub enum FilterError {
InvalidFilter,
UnknownOperator,
KeyNotFound,
}Expand description
Represents errors that can occur while processing filters.
Variants§
InvalidFilter
Indicates that the schema of the filter is invalid.
UnknownOperator
Indicates that an unknown operator was encountered in the filter.
KeyNotFound
Indicates that a key was not found in the object being filtered.
Trait Implementations§
Source§impl Clone for FilterError
impl Clone for FilterError
Source§fn clone(&self) -> FilterError
fn clone(&self) -> FilterError
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 FilterError
impl Debug for FilterError
impl Copy for FilterError
Auto Trait Implementations§
impl Freeze for FilterError
impl RefUnwindSafe for FilterError
impl Send for FilterError
impl Sync for FilterError
impl Unpin for FilterError
impl UnwindSafe for FilterError
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