Struct nektar::SQLNotNullConstraint
source · pub struct SQLNotNullConstraint {
pub cat_name: Option<String>,
pub table_db: Option<String>,
pub table_name: Option<String>,
pub column_name: Option<String>,
pub nn_name: Option<String>,
pub enable_cstr: Option<bool>,
pub validate_cstr: Option<bool>,
pub rely_cstr: Option<bool>,
}Fields§
§cat_name: Option<String>§table_db: Option<String>§table_name: Option<String>§column_name: Option<String>§nn_name: Option<String>§enable_cstr: Option<bool>§validate_cstr: Option<bool>§rely_cstr: Option<bool>Implementations§
source§impl SQLNotNullConstraint
impl SQLNotNullConstraint
pub fn new<F1, F2, F3, F4, F5, F6, F7, F8>( cat_name: F1, table_db: F2, table_name: F3, column_name: F4, nn_name: F5, enable_cstr: F6, validate_cstr: F7, rely_cstr: F8 ) -> SQLNotNullConstraint
Trait Implementations§
source§impl Clone for SQLNotNullConstraint
impl Clone for SQLNotNullConstraint
source§fn clone(&self) -> SQLNotNullConstraint
fn clone(&self) -> SQLNotNullConstraint
Returns a copy 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 SQLNotNullConstraint
impl Debug for SQLNotNullConstraint
source§impl Default for SQLNotNullConstraint
impl Default for SQLNotNullConstraint
source§fn default() -> SQLNotNullConstraint
fn default() -> SQLNotNullConstraint
Returns the “default value” for a type. Read more
source§impl Hash for SQLNotNullConstraint
impl Hash for SQLNotNullConstraint
source§impl Ord for SQLNotNullConstraint
impl Ord for SQLNotNullConstraint
source§fn cmp(&self, other: &SQLNotNullConstraint) -> Ordering
fn cmp(&self, other: &SQLNotNullConstraint) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for SQLNotNullConstraint
impl PartialEq for SQLNotNullConstraint
source§fn eq(&self, other: &SQLNotNullConstraint) -> bool
fn eq(&self, other: &SQLNotNullConstraint) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for SQLNotNullConstraint
impl PartialOrd for SQLNotNullConstraint
source§fn partial_cmp(&self, other: &SQLNotNullConstraint) -> Option<Ordering>
fn partial_cmp(&self, other: &SQLNotNullConstraint) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl TSerializable for SQLNotNullConstraint
impl TSerializable for SQLNotNullConstraint
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol ) -> Result<SQLNotNullConstraint>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for SQLNotNullConstraint
impl StructuralEq for SQLNotNullConstraint
impl StructuralPartialEq for SQLNotNullConstraint
Auto Trait Implementations§
impl RefUnwindSafe for SQLNotNullConstraint
impl Send for SQLNotNullConstraint
impl Sync for SQLNotNullConstraint
impl Unpin for SQLNotNullConstraint
impl UnwindSafe for SQLNotNullConstraint
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