pub struct PostgresHashEntity {
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 PostgresHash
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 PostgresHashEntity
impl Clone for PostgresHashEntity
Source§fn clone(&self) -> PostgresHashEntity
fn clone(&self) -> PostgresHashEntity
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 PostgresHashEntity
impl Debug for PostgresHashEntity
Source§impl From<PostgresHashEntity> for SqlGraphEntity
impl From<PostgresHashEntity> for SqlGraphEntity
Source§fn from(val: PostgresHashEntity) -> Self
fn from(val: PostgresHashEntity) -> Self
Converts to this type from the input type.
Source§impl Hash for PostgresHashEntity
impl Hash for PostgresHashEntity
Source§impl Ord for PostgresHashEntity
impl Ord for PostgresHashEntity
Source§fn cmp(&self, other: &PostgresHashEntity) -> Ordering
fn cmp(&self, other: &PostgresHashEntity) -> 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 PostgresHashEntity
impl PartialEq for PostgresHashEntity
Source§impl PartialOrd for PostgresHashEntity
impl PartialOrd for PostgresHashEntity
Source§impl ToSql for PostgresHashEntity
impl ToSql for PostgresHashEntity
impl Eq for PostgresHashEntity
impl StructuralPartialEq for PostgresHashEntity
Auto Trait Implementations§
impl Freeze for PostgresHashEntity
impl RefUnwindSafe for PostgresHashEntity
impl Send for PostgresHashEntity
impl Sync for PostgresHashEntity
impl Unpin for PostgresHashEntity
impl UnwindSafe for PostgresHashEntity
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.