pub struct PackageFileEntry {
pub size: u64,
pub mode: FileMode,
pub modified_at: Timestamp,
pub sha_checksum: String,
pub link: String,
pub flags: FileFlags,
pub user: String,
pub group: String,
pub base_name: String,
pub dir: String,
/* private fields */
}Expand description
Describes a file present in the rpm file.
Fields§
§size: u64§mode: FileMode§modified_at: Timestamp§sha_checksum: String§link: String§flags: FileFlags§user: String§group: String§base_name: String§dir: StringAuto Trait Implementations§
impl Freeze for PackageFileEntry
impl RefUnwindSafe for PackageFileEntry
impl Send for PackageFileEntry
impl Sync for PackageFileEntry
impl Unpin for PackageFileEntry
impl UnwindSafe for PackageFileEntry
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more