pub struct MergeConfig {
pub require_hint_file_write_success: bool,
pub auto_merge_config: Option<AutoMergeConfig>,
}Fields§
§require_hint_file_write_success: boolWhether failure writing hintfiles should fail merges. Hintfiles speed up initial startup, but beyond that are not necessary for correctness.
auto_merge_config: Option<AutoMergeConfig>Trait Implementations§
Source§impl Clone for MergeConfig
impl Clone for MergeConfig
Source§fn clone(&self) -> MergeConfig
fn clone(&self) -> MergeConfig
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 moreSource§impl Debug for MergeConfig
impl Debug for MergeConfig
Source§impl Default for MergeConfig
impl Default for MergeConfig
Source§fn default() -> MergeConfig
fn default() -> MergeConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MergeConfig
impl<'de> Deserialize<'de> for MergeConfig
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 MergeConfig
impl RefUnwindSafe for MergeConfig
impl Send for MergeConfig
impl Sync for MergeConfig
impl Unpin for MergeConfig
impl UnwindSafe for MergeConfig
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