pub enum StoreSearchRecursionLevel {
Boolean(bool),
Levels(u32),
}Variants§
Trait Implementations§
Source§impl Clone for StoreSearchRecursionLevel
impl Clone for StoreSearchRecursionLevel
Source§fn clone(&self) -> StoreSearchRecursionLevel
fn clone(&self) -> StoreSearchRecursionLevel
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<'de> Deserialize<'de> for StoreSearchRecursionLevel
impl<'de> Deserialize<'de> for StoreSearchRecursionLevel
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
impl Eq for StoreSearchRecursionLevel
Source§impl Ord for StoreSearchRecursionLevel
impl Ord for StoreSearchRecursionLevel
Source§fn cmp(&self, other: &StoreSearchRecursionLevel) -> Ordering
fn cmp(&self, other: &StoreSearchRecursionLevel) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StoreSearchRecursionLevel
impl PartialEq for StoreSearchRecursionLevel
Source§fn eq(&self, other: &StoreSearchRecursionLevel) -> bool
fn eq(&self, other: &StoreSearchRecursionLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for StoreSearchRecursionLevel
impl PartialOrd for StoreSearchRecursionLevel
impl StructuralPartialEq for StoreSearchRecursionLevel
Auto Trait Implementations§
impl Freeze for StoreSearchRecursionLevel
impl RefUnwindSafe for StoreSearchRecursionLevel
impl Send for StoreSearchRecursionLevel
impl Sync for StoreSearchRecursionLevel
impl Unpin for StoreSearchRecursionLevel
impl UnsafeUnpin for StoreSearchRecursionLevel
impl UnwindSafe for StoreSearchRecursionLevel
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