Struct fuchsia_archive::Utf8Reader
source · pub struct Utf8Reader<T>{ /* private fields */ }
Expand description
A struct to open and read FAR-formatted archive. Requires that all paths are valid UTF-8.
Implementations§
source§impl<T> Utf8Reader<T>
impl<T> Utf8Reader<T>
sourcepub fn list(&self) -> impl ExactSizeIterator<Item = Utf8Entry<'_>>
pub fn list(&self) -> impl ExactSizeIterator<Item = Utf8Entry<'_>>
Return a list of the items in the archive.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Utf8Reader<T>where
T: Freeze,
impl<T> RefUnwindSafe for Utf8Reader<T>where
T: RefUnwindSafe,
impl<T> Send for Utf8Reader<T>where
T: Send,
impl<T> Sync for Utf8Reader<T>where
T: Sync,
impl<T> Unpin for Utf8Reader<T>where
T: Unpin,
impl<T> UnwindSafe for Utf8Reader<T>where
T: UnwindSafe,
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