pub struct OperationConfig {
pub show_diffs: bool,
pub backup_before_edit: bool,
pub max_file_size: u64,
pub allowed_extensions: Vec<String>,
}Expand description
Operation-specific settings.
Fields§
§show_diffs: bool§backup_before_edit: bool§max_file_size: u64§allowed_extensions: Vec<String>Trait Implementations§
Source§impl Clone for OperationConfig
impl Clone for OperationConfig
Source§fn clone(&self) -> OperationConfig
fn clone(&self) -> OperationConfig
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 OperationConfig
impl Debug for OperationConfig
Source§impl Default for OperationConfig
impl Default for OperationConfig
Source§impl<'de> Deserialize<'de> for OperationConfig
impl<'de> Deserialize<'de> for OperationConfig
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 OperationConfig
impl RefUnwindSafe for OperationConfig
impl Send for OperationConfig
impl Sync for OperationConfig
impl Unpin for OperationConfig
impl UnsafeUnpin for OperationConfig
impl UnwindSafe for OperationConfig
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