pub struct ExcludeElement {
pub expression: String,
pub operator: String,
}Expand description
Element in an EXCLUDE constraint: expression WITH operator
Fields§
§expression: StringThe column expression (may include operator class, ordering, nulls)
operator: StringThe operator (e.g., &&, =)
Trait Implementations§
Source§impl Clone for ExcludeElement
impl Clone for ExcludeElement
Source§fn clone(&self) -> ExcludeElement
fn clone(&self) -> ExcludeElement
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 ExcludeElement
impl Debug for ExcludeElement
Source§impl<'de> Deserialize<'de> for ExcludeElement
impl<'de> Deserialize<'de> for ExcludeElement
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
Source§impl PartialEq for ExcludeElement
impl PartialEq for ExcludeElement
Source§impl Serialize for ExcludeElement
impl Serialize for ExcludeElement
impl StructuralPartialEq for ExcludeElement
Auto Trait Implementations§
impl Freeze for ExcludeElement
impl RefUnwindSafe for ExcludeElement
impl Send for ExcludeElement
impl Sync for ExcludeElement
impl Unpin for ExcludeElement
impl UnwindSafe for ExcludeElement
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