pub struct ResolvedTableReference {
pub catalog: Arc<str>,
pub schema: Arc<str>,
pub table: Arc<str>,
}Expand description
A fully resolved path to a table of the form “catalog.schema.table”
Fields§
§catalog: Arc<str>The catalog (aka database) containing the table
schema: Arc<str>The schema containing the table
table: Arc<str>The table name
Trait Implementations§
Source§impl Clone for ResolvedTableReference
impl Clone for ResolvedTableReference
Source§fn clone(&self) -> ResolvedTableReference
fn clone(&self) -> ResolvedTableReference
Returns a duplicate 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 ResolvedTableReference
impl Debug for ResolvedTableReference
Source§impl Display for ResolvedTableReference
impl Display for ResolvedTableReference
Source§impl From<ResolvedTableReference> for TableReference
impl From<ResolvedTableReference> for TableReference
Source§fn from(resolved: ResolvedTableReference) -> TableReference
fn from(resolved: ResolvedTableReference) -> TableReference
Converts to this type from the input type.
Source§impl Hash for ResolvedTableReference
impl Hash for ResolvedTableReference
Source§impl Ord for ResolvedTableReference
impl Ord for ResolvedTableReference
Source§fn cmp(&self, other: &ResolvedTableReference) -> Ordering
fn cmp(&self, other: &ResolvedTableReference) -> 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 ResolvedTableReference
impl PartialEq for ResolvedTableReference
Source§impl PartialOrd for ResolvedTableReference
impl PartialOrd for ResolvedTableReference
impl Eq for ResolvedTableReference
impl StructuralPartialEq for ResolvedTableReference
Auto Trait Implementations§
impl Freeze for ResolvedTableReference
impl RefUnwindSafe for ResolvedTableReference
impl Send for ResolvedTableReference
impl Sync for ResolvedTableReference
impl Unpin for ResolvedTableReference
impl UnwindSafe for ResolvedTableReference
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.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more