pub enum SchemaReference {
Bare {
schema: Arc<str>,
},
Full {
schema: Arc<str>,
catalog: Arc<str>,
},
}
Variants§
Implementations§
source§impl SchemaReference
impl SchemaReference
sourcepub fn schema_name(&self) -> &str
pub fn schema_name(&self) -> &str
Get only the schema name that this references.
Trait Implementations§
source§impl Clone for SchemaReference
impl Clone for SchemaReference
source§fn clone(&self) -> SchemaReference
fn clone(&self) -> SchemaReference
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 SchemaReference
impl Debug for SchemaReference
source§impl Display for SchemaReference
impl Display for SchemaReference
source§impl Hash for SchemaReference
impl Hash for SchemaReference
source§impl Ord for SchemaReference
impl Ord for SchemaReference
source§fn cmp(&self, other: &SchemaReference) -> Ordering
fn cmp(&self, other: &SchemaReference) -> 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 SchemaReference
impl PartialEq for SchemaReference
source§impl PartialOrd for SchemaReference
impl PartialOrd for SchemaReference
impl Eq for SchemaReference
impl StructuralPartialEq for SchemaReference
Auto Trait Implementations§
impl Freeze for SchemaReference
impl RefUnwindSafe for SchemaReference
impl Send for SchemaReference
impl Sync for SchemaReference
impl Unpin for SchemaReference
impl UnwindSafe for SchemaReference
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.