pub struct CreateDirectoryPatchOptions {
pub old_path: PathBuf,
pub new_path: PathBuf,
pub patch_path: PathBuf,
pub managed_paths: Vec<String>,
pub hdiffz_path: Option<PathBuf>,
pub force: bool,
pub step_size: Option<String>,
pub compression: Option<String>,
pub checksum: Option<String>,
pub parallel_threads: Option<u16>,
}Fields§
§old_path: PathBuf§new_path: PathBuf§patch_path: PathBuf§managed_paths: Vec<String>§hdiffz_path: Option<PathBuf>§force: bool§step_size: Option<String>§compression: Option<String>§checksum: Option<String>§parallel_threads: Option<u16>Trait Implementations§
Source§impl Clone for CreateDirectoryPatchOptions
impl Clone for CreateDirectoryPatchOptions
Source§fn clone(&self) -> CreateDirectoryPatchOptions
fn clone(&self) -> CreateDirectoryPatchOptions
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 CreateDirectoryPatchOptions
impl Debug for CreateDirectoryPatchOptions
Source§impl<'de> Deserialize<'de> for CreateDirectoryPatchOptions
impl<'de> Deserialize<'de> for CreateDirectoryPatchOptions
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 CreateDirectoryPatchOptions
impl RefUnwindSafe for CreateDirectoryPatchOptions
impl Send for CreateDirectoryPatchOptions
impl Sync for CreateDirectoryPatchOptions
impl Unpin for CreateDirectoryPatchOptions
impl UnsafeUnpin for CreateDirectoryPatchOptions
impl UnwindSafe for CreateDirectoryPatchOptions
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