Struct updatehub_package_schema::objects::Tarball[][src]

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: Stringfilesystem: Filesystemsize: u64sha256sum: Stringtarget: TargetTypetarget_path: PathBufcompressed: boolrequired_uncompressed_size: u64target_format: TargetFormatmount_options: String

Trait Implementations

impl Debug for Tarball[src]

impl<'de> Deserialize<'de> for Tarball[src]

impl PartialEq<Tarball> for Tarball[src]

impl StructuralPartialEq for Tarball[src]

Auto Trait Implementations

impl RefUnwindSafe for Tarball

impl Send for Tarball

impl Sync for Tarball

impl Unpin for Tarball

impl UnwindSafe for Tarball

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.