pub struct AnalyzeSpec { /* private fields */ }Expand description
Everything one standalone analyze query run needs, snapshotted off the live
engine so the run itself can happen on any thread: the DB path, the registered
tables, and the engine configuration. Built by
Cluster::analyze_spec; consumed by
analyze_standalone. Plain owned data (Send), no engine handles.
Auto Trait Implementations§
impl Freeze for AnalyzeSpec
impl RefUnwindSafe for AnalyzeSpec
impl Send for AnalyzeSpec
impl Sync for AnalyzeSpec
impl Unpin for AnalyzeSpec
impl UnsafeUnpin for AnalyzeSpec
impl UnwindSafe for AnalyzeSpec
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