pub struct PlanSnapshot {
pub export_name: String,
pub base_query: String,
pub strategy: String,
pub format: String,
pub compression: String,
pub destination_type: String,
pub tuning_profile: String,
pub batch_size: usize,
pub validate: bool,
pub reconcile: bool,
pub resume: bool,
}Expand description
Owned, serialisable snapshot of the resolved execution plan, captured at
the moment a run starts. Answers “what was planned?” without requiring the
original ResolvedRunPlan to remain in scope.
Fields§
§export_name: String§base_query: String§strategy: String§format: String§compression: String§destination_type: String§tuning_profile: String§batch_size: usize§validate: bool§reconcile: bool§resume: boolTrait Implementations§
Source§impl Clone for PlanSnapshot
impl Clone for PlanSnapshot
Source§fn clone(&self) -> PlanSnapshot
fn clone(&self) -> PlanSnapshot
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 PlanSnapshot
impl Debug for PlanSnapshot
Source§impl<'de> Deserialize<'de> for PlanSnapshot
impl<'de> Deserialize<'de> for PlanSnapshot
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 PlanSnapshot
impl RefUnwindSafe for PlanSnapshot
impl Send for PlanSnapshot
impl Sync for PlanSnapshot
impl Unpin for PlanSnapshot
impl UnsafeUnpin for PlanSnapshot
impl UnwindSafe for PlanSnapshot
Blanket Implementations§
impl<T> Allocation for T
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