pub struct ParallelizationInfo {
pub threads_used: usize,
pub effective: bool,
pub partitions: Vec<PartitionInfo>,
}Expand description
Parallelization information for query execution
Fields§
§threads_used: usizeNumber of threads used
effective: boolWhether parallelization was effective
partitions: Vec<PartitionInfo>Partition information
Trait Implementations§
Source§impl Clone for ParallelizationInfo
impl Clone for ParallelizationInfo
Source§fn clone(&self) -> ParallelizationInfo
fn clone(&self) -> ParallelizationInfo
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 ParallelizationInfo
impl Debug for ParallelizationInfo
Source§impl<'de> Deserialize<'de> for ParallelizationInfo
impl<'de> Deserialize<'de> for ParallelizationInfo
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 ParallelizationInfo
impl RefUnwindSafe for ParallelizationInfo
impl Send for ParallelizationInfo
impl Sync for ParallelizationInfo
impl Unpin for ParallelizationInfo
impl UnsafeUnpin for ParallelizationInfo
impl UnwindSafe for ParallelizationInfo
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