pub struct QualifiedName<'bump> {
pub db_name: Option<Name<'bump>>,
pub name: Name<'bump>,
pub alias: Option<Name<'bump>>,
}Expand description
Qualified name
Fields§
§db_name: Option<Name<'bump>>schema
name: Name<'bump>object name
alias: Option<Name<'bump>>alias
Implementations§
Trait Implementations§
Source§impl<'bump> Debug for QualifiedName<'bump>
impl<'bump> Debug for QualifiedName<'bump>
Source§impl Display for QualifiedName<'_>
impl Display for QualifiedName<'_>
impl<'bump> Eq for QualifiedName<'bump>
Source§impl<'bump> PartialEq for QualifiedName<'bump>
impl<'bump> PartialEq for QualifiedName<'bump>
Source§fn eq(&self, other: &QualifiedName<'bump>) -> bool
fn eq(&self, other: &QualifiedName<'bump>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'bump> StructuralPartialEq for QualifiedName<'bump>
Auto Trait Implementations§
impl<'bump> Freeze for QualifiedName<'bump>
impl<'bump> RefUnwindSafe for QualifiedName<'bump>
impl<'bump> Send for QualifiedName<'bump>
impl<'bump> Sync for QualifiedName<'bump>
impl<'bump> Unpin for QualifiedName<'bump>
impl<'bump> UnsafeUnpin for QualifiedName<'bump>
impl<'bump> UnwindSafe for QualifiedName<'bump>
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> 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.