pub struct ApplyDirectoryPatchOptions {
pub old_path: PathBuf,
pub patch_path: PathBuf,
pub output_path: PathBuf,
pub managed_paths: Vec<String>,
pub expected_tree: FileTreeManifest,
pub hpatchz_path: Option<PathBuf>,
pub cache_size: Option<String>,
pub parallel_threads: Option<u16>,
pub verify_checksums: bool,
}Fields§
§old_path: PathBuf§patch_path: PathBuf§output_path: PathBuf§managed_paths: Vec<String>§expected_tree: FileTreeManifest§hpatchz_path: Option<PathBuf>§cache_size: Option<String>§parallel_threads: Option<u16>§verify_checksums: boolTrait Implementations§
Source§impl Clone for ApplyDirectoryPatchOptions
impl Clone for ApplyDirectoryPatchOptions
Source§fn clone(&self) -> ApplyDirectoryPatchOptions
fn clone(&self) -> ApplyDirectoryPatchOptions
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 ApplyDirectoryPatchOptions
impl Debug for ApplyDirectoryPatchOptions
Source§impl<'de> Deserialize<'de> for ApplyDirectoryPatchOptions
impl<'de> Deserialize<'de> for ApplyDirectoryPatchOptions
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 ApplyDirectoryPatchOptions
impl RefUnwindSafe for ApplyDirectoryPatchOptions
impl Send for ApplyDirectoryPatchOptions
impl Sync for ApplyDirectoryPatchOptions
impl Unpin for ApplyDirectoryPatchOptions
impl UnsafeUnpin for ApplyDirectoryPatchOptions
impl UnwindSafe for ApplyDirectoryPatchOptions
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