pub struct ScanNode {
pub table_name: String,
pub alias: Option<String>,
pub columns: Vec<String>,
pub index_scan: Option<IndexScan>,
}Expand description
Table scan operation.
Fields§
§table_name: String§alias: Option<String>§columns: Vec<String>§index_scan: Option<IndexScan>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScanNode
impl RefUnwindSafe for ScanNode
impl Send for ScanNode
impl Sync for ScanNode
impl Unpin for ScanNode
impl UnsafeUnpin for ScanNode
impl UnwindSafe for ScanNode
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