pub enum SelectCondition {
Equals(String),
DoesNotEqual(String),
IsEmpty,
IsNotEmpty,
}
Variants§
Equals(String)
Only return pages where the page property value matches the provided value exactly.
DoesNotEqual(String)
Only return pages where the page property value does not match the provided value exactly.
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 SelectCondition
impl Clone for SelectCondition
Source§fn clone(&self) -> SelectCondition
fn clone(&self) -> SelectCondition
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 SelectCondition
impl Debug for SelectCondition
Source§impl PartialEq for SelectCondition
impl PartialEq for SelectCondition
Source§impl Serialize for SelectCondition
impl Serialize for SelectCondition
impl Eq for SelectCondition
impl StructuralPartialEq for SelectCondition
Auto Trait Implementations§
impl Freeze for SelectCondition
impl RefUnwindSafe for SelectCondition
impl Send for SelectCondition
impl Sync for SelectCondition
impl Unpin for SelectCondition
impl UnwindSafe for SelectCondition
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.