pub struct TableCheckDef {
pub name: Option<String>,
pub expr: Expr,
pub sql: String,
}Expand description
Table-level CHECK constraint stored in schema.
Fields§
§name: Option<String>§expr: Expr§sql: StringTrait Implementations§
Source§impl Clone for TableCheckDef
impl Clone for TableCheckDef
Source§fn clone(&self) -> TableCheckDef
fn clone(&self) -> TableCheckDef
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 moreAuto Trait Implementations§
impl Freeze for TableCheckDef
impl RefUnwindSafe for TableCheckDef
impl Send for TableCheckDef
impl Sync for TableCheckDef
impl Unpin for TableCheckDef
impl UnsafeUnpin for TableCheckDef
impl UnwindSafe for TableCheckDef
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