pub struct TableRef {
pub catalog: String,
pub schema: String,
pub table: String,
}Expand description
A fully-qualified table coordinate.
Deserializes from the router’s {catalog}/{schema}/{table} path parameters.
Fields§
§catalog: String§schema: String§table: StringImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TableRef
impl<'de> Deserialize<'de> for TableRef
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
Auto Trait Implementations§
impl Freeze for TableRef
impl RefUnwindSafe for TableRef
impl Send for TableRef
impl Sync for TableRef
impl Unpin for TableRef
impl UnsafeUnpin for TableRef
impl UnwindSafe for TableRef
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