#[non_exhaustive]pub struct RelationExistsComparator {
pub eq: Option<bool>,
pub neq: Option<bool>,
}Expand description
Comparator asserting the existence (or absence) of a relation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.eq: Option<bool>The relation exists.
neq: Option<bool>The relation does not exist.
Implementations§
Source§impl RelationExistsComparator
impl RelationExistsComparator
Sourcepub fn builder() -> RelationExistsComparatorBuilder
pub fn builder() -> RelationExistsComparatorBuilder
Create an instance of RelationExistsComparator using the builder syntax
Trait Implementations§
Source§impl Clone for RelationExistsComparator
impl Clone for RelationExistsComparator
Source§fn clone(&self) -> RelationExistsComparator
fn clone(&self) -> RelationExistsComparator
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 RelationExistsComparator
impl Debug for RelationExistsComparator
Source§impl Default for RelationExistsComparator
impl Default for RelationExistsComparator
Source§fn default() -> RelationExistsComparator
fn default() -> RelationExistsComparator
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RelationExistsComparator
impl RefUnwindSafe for RelationExistsComparator
impl Send for RelationExistsComparator
impl Sync for RelationExistsComparator
impl Unpin for RelationExistsComparator
impl UnsafeUnpin for RelationExistsComparator
impl UnwindSafe for RelationExistsComparator
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