Struct Exclusion
pub struct Exclusion {
pub name: String,
pub using: String,
pub columns: Vec<String>,
pub operation: String,
}Expand description
A constraint that ensures that, if any two rows are compared on the specified columns or expressions using the specified operators, at least one of these operator comparisons returns false or null
Fields§
§name: String§using: String§columns: Vec<String>§operation: StringTrait Implementations§
impl StructuralPartialEq for Exclusion
Auto Trait Implementations§
impl Freeze for Exclusion
impl RefUnwindSafe for Exclusion
impl Send for Exclusion
impl Sync for Exclusion
impl Unpin for Exclusion
impl UnwindSafe for Exclusion
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