pub struct Tarball {
pub filename: String,
pub filesystem: Filesystem,
pub size: u64,
pub sha256sum: String,
pub target: TargetType,
pub target_path: PathBuf,
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: TargetType§target_path: PathBuf§compressed: bool§required_uncompressed_size: u64§target_format: TargetFormat§mount_options: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Tarball
impl<'de> Deserialize<'de> for Tarball
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 Tarball
impl StructuralPartialEq for Tarball
Auto Trait Implementations§
impl Freeze for Tarball
impl RefUnwindSafe for Tarball
impl Send for Tarball
impl Sync for Tarball
impl Unpin for Tarball
impl UnwindSafe for Tarball
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