pub struct FolderEntry { /* private fields */ }Expand description
Metadata about one folder in a cabinet.
Implementations§
Source§impl FolderEntry
impl FolderEntry
Sourcepub fn compression_type(&self) -> CompressionType
pub fn compression_type(&self) -> CompressionType
Returns the scheme used to compress this folder’s data.
Sourcepub fn num_data_blocks(&self) -> u16
pub fn num_data_blocks(&self) -> u16
Returns the number of data blocks used to store this folder’s data.
Sourcepub fn reserve_data(&self) -> &[u8] ⓘ
pub fn reserve_data(&self) -> &[u8] ⓘ
Returns the application-defined reserve data for this folder.
Sourcepub fn file_entries(&self) -> FileEntries<'_> ⓘ
pub fn file_entries(&self) -> FileEntries<'_> ⓘ
Returns an iterator over the file entries in this folder.
Auto Trait Implementations§
impl Freeze for FolderEntry
impl RefUnwindSafe for FolderEntry
impl Send for FolderEntry
impl Sync for FolderEntry
impl Unpin for FolderEntry
impl UnwindSafe for FolderEntry
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