pub struct TableIdent {
pub catalog: String,
pub namespace: Vec<String>,
pub name: String,
}Expand description
Fully-qualified table identifier: catalog / namespace / table. All three components are realm-scoped.
Fields§
§catalog: String§namespace: Vec<String>§name: StringTrait Implementations§
Source§impl Clone for TableIdent
impl Clone for TableIdent
Source§fn clone(&self) -> TableIdent
fn clone(&self) -> TableIdent
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 TableIdent
impl Debug for TableIdent
Source§impl<'de> Deserialize<'de> for TableIdent
impl<'de> Deserialize<'de> for TableIdent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for TableIdent
impl Hash for TableIdent
Source§impl PartialEq for TableIdent
impl PartialEq for TableIdent
Source§impl Serialize for TableIdent
impl Serialize for TableIdent
impl Eq for TableIdent
impl StructuralPartialEq for TableIdent
Auto Trait Implementations§
impl Freeze for TableIdent
impl RefUnwindSafe for TableIdent
impl Send for TableIdent
impl Sync for TableIdent
impl Unpin for TableIdent
impl UnsafeUnpin for TableIdent
impl UnwindSafe for TableIdent
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.