pub struct CachedTableInfo {
pub storage_location: Option<String>,
pub format: String,
}Expand description
Cached table information for performance optimization. Contains only the fields needed for scan/write operations.
Fields§
§storage_location: Option<String>Storage location of the table.
format: StringData source format (e.g., “PARQUET”).
Trait Implementations§
Source§impl Clone for CachedTableInfo
impl Clone for CachedTableInfo
Source§fn clone(&self) -> CachedTableInfo
fn clone(&self) -> CachedTableInfo
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 moreAuto Trait Implementations§
impl Freeze for CachedTableInfo
impl RefUnwindSafe for CachedTableInfo
impl Send for CachedTableInfo
impl Sync for CachedTableInfo
impl Unpin for CachedTableInfo
impl UnwindSafe for CachedTableInfo
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