pub enum SqlDeclaredEntity {
    Type(SqlDeclaredEntityData),
    Enum(SqlDeclaredEntityData),
    Function(SqlDeclaredEntityData),
}Variants§
Implementations§
Trait Implementations§
source§impl Clone for SqlDeclaredEntity
 
impl Clone for SqlDeclaredEntity
source§fn clone(&self) -> SqlDeclaredEntity
 
fn clone(&self) -> SqlDeclaredEntity
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 SqlDeclaredEntity
 
impl Debug for SqlDeclaredEntity
source§impl Display for SqlDeclaredEntity
 
impl Display for SqlDeclaredEntity
source§impl Hash for SqlDeclaredEntity
 
impl Hash for SqlDeclaredEntity
source§impl Ord for SqlDeclaredEntity
 
impl Ord for SqlDeclaredEntity
source§fn cmp(&self, other: &SqlDeclaredEntity) -> Ordering
 
fn cmp(&self, other: &SqlDeclaredEntity) -> 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<SqlDeclaredEntity> for SqlDeclaredEntity
 
impl PartialEq<SqlDeclaredEntity> for SqlDeclaredEntity
source§fn eq(&self, other: &SqlDeclaredEntity) -> bool
 
fn eq(&self, other: &SqlDeclaredEntity) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd<SqlDeclaredEntity> for SqlDeclaredEntity
 
impl PartialOrd<SqlDeclaredEntity> for SqlDeclaredEntity
source§fn partial_cmp(&self, other: &SqlDeclaredEntity) -> Option<Ordering>
 
fn partial_cmp(&self, other: &SqlDeclaredEntity) -> 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 moreimpl Eq for SqlDeclaredEntity
impl StructuralEq for SqlDeclaredEntity
impl StructuralPartialEq for SqlDeclaredEntity
Auto Trait Implementations§
impl RefUnwindSafe for SqlDeclaredEntity
impl Send for SqlDeclaredEntity
impl Sync for SqlDeclaredEntity
impl Unpin for SqlDeclaredEntity
impl UnwindSafe for SqlDeclaredEntity
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
 
impl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.