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 for SqlDeclaredEntity
impl PartialEq 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 for SqlDeclaredEntity
impl PartialOrd 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 StructuralPartialEq for SqlDeclaredEntity
Auto Trait Implementations§
impl Freeze for SqlDeclaredEntity
impl RefUnwindSafe for SqlDeclaredEntity
impl Send for SqlDeclaredEntity
impl Sync for SqlDeclaredEntity
impl Unpin for SqlDeclaredEntity
impl UnwindSafe for SqlDeclaredEntity
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
source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.