pub struct UserDefinedTypeCompositeAttributeDef {
pub name: Ident,
pub data_type: DataType,
pub collation: Option<ObjectName>,
}
Expand description
SQL user defined type attribute definition
Fields§
§name: Ident
§data_type: DataType
§collation: Option<ObjectName>
Trait Implementations§
Source§impl Clone for UserDefinedTypeCompositeAttributeDef
impl Clone for UserDefinedTypeCompositeAttributeDef
Source§fn clone(&self) -> UserDefinedTypeCompositeAttributeDef
fn clone(&self) -> UserDefinedTypeCompositeAttributeDef
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 Ord for UserDefinedTypeCompositeAttributeDef
impl Ord for UserDefinedTypeCompositeAttributeDef
Source§fn cmp(&self, other: &UserDefinedTypeCompositeAttributeDef) -> Ordering
fn cmp(&self, other: &UserDefinedTypeCompositeAttributeDef) -> 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 UserDefinedTypeCompositeAttributeDef
impl PartialEq for UserDefinedTypeCompositeAttributeDef
Source§fn eq(&self, other: &UserDefinedTypeCompositeAttributeDef) -> bool
fn eq(&self, other: &UserDefinedTypeCompositeAttributeDef) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for UserDefinedTypeCompositeAttributeDef
impl PartialOrd for UserDefinedTypeCompositeAttributeDef
impl Eq for UserDefinedTypeCompositeAttributeDef
impl StructuralPartialEq for UserDefinedTypeCompositeAttributeDef
Auto Trait Implementations§
impl Freeze for UserDefinedTypeCompositeAttributeDef
impl RefUnwindSafe for UserDefinedTypeCompositeAttributeDef
impl Send for UserDefinedTypeCompositeAttributeDef
impl Sync for UserDefinedTypeCompositeAttributeDef
impl Unpin for UserDefinedTypeCompositeAttributeDef
impl UnwindSafe for UserDefinedTypeCompositeAttributeDef
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