pub struct PartitionConfig {
pub target_file: String,
}Expand description
Config for ParallelMode::Partition: split one file into disjoint regions.
Fields§
§target_file: StringRepo-relative path of the single file to partition.
Trait Implementations§
Source§impl Clone for PartitionConfig
impl Clone for PartitionConfig
Source§fn clone(&self) -> PartitionConfig
fn clone(&self) -> PartitionConfig
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 PartitionConfig
impl Debug for PartitionConfig
Source§impl<'de> Deserialize<'de> for PartitionConfig
impl<'de> Deserialize<'de> for PartitionConfig
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
Source§impl PartialEq for PartitionConfig
impl PartialEq for PartitionConfig
Source§fn eq(&self, other: &PartitionConfig) -> bool
fn eq(&self, other: &PartitionConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PartitionConfig
impl Serialize for PartitionConfig
impl StructuralPartialEq for PartitionConfig
Auto Trait Implementations§
impl Freeze for PartitionConfig
impl RefUnwindSafe for PartitionConfig
impl Send for PartitionConfig
impl Sync for PartitionConfig
impl Unpin for PartitionConfig
impl UnsafeUnpin for PartitionConfig
impl UnwindSafe for PartitionConfig
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