pub struct Entry<'a, R: Read> {
pub metadata: Metadata,
pub path: PathBuf,
pub reader: EntryReader<'a, R>,
pub format: Format,
}Expand description
CPIO archive entry.
Fields§
§metadata: MetadataFile’s metadata.
path: PathBufFile path in the archive.
reader: EntryReader<'a, R>Entry reader.
format: FormatEntry format.
Trait Implementations§
Auto Trait Implementations§
impl<'a, R> Freeze for Entry<'a, R>
impl<'a, R> RefUnwindSafe for Entry<'a, R>where
R: RefUnwindSafe,
impl<'a, R> Send for Entry<'a, R>where
R: Send,
impl<'a, R> Sync for Entry<'a, R>where
R: Sync,
impl<'a, R> Unpin for Entry<'a, R>
impl<'a, R> !UnwindSafe for Entry<'a, R>
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