pub struct Copy {
pub filename: String,
pub filesystem: Filesystem,
pub size: u64,
pub sha256sum: String,
pub target_type: TargetType,
pub target_path: PathBuf,
pub install_if_different: Option<InstallIfDifferent>,
pub target_permissions: TargetPermissions,
pub compressed: bool,
pub required_uncompressed_size: u64,
pub target_format: TargetFormat,
pub mount_options: String,
}Fields§
§filename: String§filesystem: Filesystem§size: u64§sha256sum: String§target_type: TargetType§target_path: PathBuf§install_if_different: Option<InstallIfDifferent>§target_permissions: TargetPermissions§compressed: bool§required_uncompressed_size: u64§target_format: TargetFormat§mount_options: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Copy
impl<'de> Deserialize<'de> for Copy
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
impl Eq for Copy
impl StructuralPartialEq for Copy
Auto Trait Implementations§
impl Freeze for Copy
impl RefUnwindSafe for Copy
impl Send for Copy
impl Sync for Copy
impl Unpin for Copy
impl UnwindSafe for Copy
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