pub struct RelationExistsComparator {
pub eq: Option<bool>,
pub neq: Option<bool>,
}Expand description
Comparator for relation existence.
Fields§
§eq: Option<bool>Equals constraint.
neq: Option<bool>Not equals constraint.
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 · 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
Source§impl<'de> Deserialize<'de> for RelationExistsComparator
impl<'de> Deserialize<'de> for RelationExistsComparator
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
Auto Trait Implementations§
impl Freeze for RelationExistsComparator
impl RefUnwindSafe for RelationExistsComparator
impl Send for RelationExistsComparator
impl Sync for RelationExistsComparator
impl Unpin 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