[][src]Struct tardex::Tardex

pub struct Tardex<R> { /* fields omitted */ }

Provides access to files in a tarball stored behind a Read impl.

Methods

impl<R> Tardex<R> where
    R: Read + Seek + Clone
[src]

pub fn new(reader: R) -> Result<Self>[src]

Construct a new Tardex from a seekable, cloneable reader. Note that this excludes std::fs::File.

pub fn entry<P>(&self, k: P) -> Option<Entry<R>> where
    P: AsRef<Path>, 
[src]

Access the entry at a path.

impl<R> Tardex<R>[src]

pub fn paths(&self) -> impl Iterator<Item = &Path>[src]

Returns the tarball's paths in lexical order

Trait Implementations

impl<R: Debug> Debug for Tardex<R>[src]

Auto Trait Implementations

impl<R> Send for Tardex<R> where
    R: Send

impl<R> Sync for Tardex<R> where
    R: Sync

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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