pub struct SchemaContext {
pub tables: Vec<TableInfo>,
}Expand description
Schema 上下文,描述数据库中的表和列信息
Fields§
§tables: Vec<TableInfo>Trait Implementations§
Source§impl Clone for SchemaContext
impl Clone for SchemaContext
Source§fn clone(&self) -> SchemaContext
fn clone(&self) -> SchemaContext
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SchemaContext
impl Debug for SchemaContext
Source§impl Default for SchemaContext
impl Default for SchemaContext
Source§fn default() -> SchemaContext
fn default() -> SchemaContext
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SchemaContext
impl RefUnwindSafe for SchemaContext
impl Send for SchemaContext
impl Sync for SchemaContext
impl Unpin for SchemaContext
impl UnsafeUnpin for SchemaContext
impl UnwindSafe for SchemaContext
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