pub enum UserDefinedTypeRepresentation {
Composite {
attributes: Vec<UserDefinedTypeCompositeAttributeDef>,
},
}
Expand description
SQL user defined type definition
Variants§
Composite
Fields
§
attributes: Vec<UserDefinedTypeCompositeAttributeDef>
Trait Implementations§
source§impl Clone for UserDefinedTypeRepresentation
impl Clone for UserDefinedTypeRepresentation
source§fn clone(&self) -> UserDefinedTypeRepresentation
fn clone(&self) -> UserDefinedTypeRepresentation
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<'de> Deserialize<'de> for UserDefinedTypeRepresentation
impl<'de> Deserialize<'de> for UserDefinedTypeRepresentation
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 Hash for UserDefinedTypeRepresentation
impl Hash for UserDefinedTypeRepresentation
source§impl Ord for UserDefinedTypeRepresentation
impl Ord for UserDefinedTypeRepresentation
source§fn cmp(&self, other: &UserDefinedTypeRepresentation) -> Ordering
fn cmp(&self, other: &UserDefinedTypeRepresentation) -> 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<UserDefinedTypeRepresentation> for UserDefinedTypeRepresentation
impl PartialEq<UserDefinedTypeRepresentation> for UserDefinedTypeRepresentation
source§fn eq(&self, other: &UserDefinedTypeRepresentation) -> bool
fn eq(&self, other: &UserDefinedTypeRepresentation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<UserDefinedTypeRepresentation> for UserDefinedTypeRepresentation
impl PartialOrd<UserDefinedTypeRepresentation> for UserDefinedTypeRepresentation
source§fn partial_cmp(&self, other: &UserDefinedTypeRepresentation) -> Option<Ordering>
fn partial_cmp(&self, other: &UserDefinedTypeRepresentation) -> 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 VisitMut for UserDefinedTypeRepresentation
impl VisitMut for UserDefinedTypeRepresentation
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for UserDefinedTypeRepresentation
impl StructuralEq for UserDefinedTypeRepresentation
impl StructuralPartialEq for UserDefinedTypeRepresentation
Auto Trait Implementations§
impl RefUnwindSafe for UserDefinedTypeRepresentation
impl Send for UserDefinedTypeRepresentation
impl Sync for UserDefinedTypeRepresentation
impl Unpin for UserDefinedTypeRepresentation
impl UnwindSafe for UserDefinedTypeRepresentation
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