pub struct PostgresOrdEntity {
pub name: &'static str,
pub file: &'static str,
pub line: u32,
pub full_path: &'static str,
pub module_path: &'static str,
pub id: TypeId,
pub to_sql_config: ToSqlConfigEntity,
}
Expand description
The output of a PostgresOrd
from quote::ToTokens::to_tokens
.
Fields§
§name: &'static str
§file: &'static str
§line: u32
§full_path: &'static str
§module_path: &'static str
§id: TypeId
§to_sql_config: ToSqlConfigEntity
Trait Implementations§
Source§impl Clone for PostgresOrdEntity
impl Clone for PostgresOrdEntity
Source§fn clone(&self) -> PostgresOrdEntity
fn clone(&self) -> PostgresOrdEntity
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 PostgresOrdEntity
impl Debug for PostgresOrdEntity
Source§impl From<PostgresOrdEntity> for SqlGraphEntity
impl From<PostgresOrdEntity> for SqlGraphEntity
Source§fn from(val: PostgresOrdEntity) -> Self
fn from(val: PostgresOrdEntity) -> Self
Converts to this type from the input type.
Source§impl Hash for PostgresOrdEntity
impl Hash for PostgresOrdEntity
Source§impl Ord for PostgresOrdEntity
impl Ord for PostgresOrdEntity
Source§fn cmp(&self, other: &PostgresOrdEntity) -> Ordering
fn cmp(&self, other: &PostgresOrdEntity) -> 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 PostgresOrdEntity
impl PartialEq for PostgresOrdEntity
Source§impl PartialOrd for PostgresOrdEntity
impl PartialOrd for PostgresOrdEntity
Source§impl ToSql for PostgresOrdEntity
impl ToSql for PostgresOrdEntity
impl Eq for PostgresOrdEntity
impl StructuralPartialEq for PostgresOrdEntity
Auto Trait Implementations§
impl Freeze for PostgresOrdEntity
impl RefUnwindSafe for PostgresOrdEntity
impl Send for PostgresOrdEntity
impl Sync for PostgresOrdEntity
impl Unpin for PostgresOrdEntity
impl UnwindSafe for PostgresOrdEntity
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.