Enum notion_wasi::models::search::MultiSelectCondition
source · pub enum MultiSelectCondition {
Contains(String),
DoesNotContain(String),
IsEmpty,
IsNotEmpty,
}Variants§
Contains(String)
Only return pages where the page property value contains the provided value.
DoesNotContain(String)
Only return pages where the page property value does not contain the provided value.
IsEmpty
Only return pages where the page property value is empty.
IsNotEmpty
Only return pages where the page property value is present.
Trait Implementations§
source§impl Clone for MultiSelectCondition
impl Clone for MultiSelectCondition
source§fn clone(&self) -> MultiSelectCondition
fn clone(&self) -> MultiSelectCondition
Returns a copy 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 MultiSelectCondition
impl Debug for MultiSelectCondition
source§impl PartialEq<MultiSelectCondition> for MultiSelectCondition
impl PartialEq<MultiSelectCondition> for MultiSelectCondition
source§fn eq(&self, other: &MultiSelectCondition) -> bool
fn eq(&self, other: &MultiSelectCondition) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for MultiSelectCondition
impl Serialize for MultiSelectCondition
impl Eq for MultiSelectCondition
impl StructuralEq for MultiSelectCondition
impl StructuralPartialEq for MultiSelectCondition
Auto Trait Implementations§
impl RefUnwindSafe for MultiSelectCondition
impl Send for MultiSelectCondition
impl Sync for MultiSelectCondition
impl Unpin for MultiSelectCondition
impl UnwindSafe for MultiSelectCondition
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.