[][src]Struct xp3::archive::XP3Archive

pub struct XP3Archive<T: Read + Seek> { /* fields omitted */ }

An XP3 archive with XP3 container. Read only occur when user request.

Implementations

impl<T: Read + Seek> XP3Archive<T>[src]

pub fn new(container: VirtualXP3, data: T) -> Self[src]

pub fn container(&self) -> &VirtualXP3[src]

pub fn entries(&self) -> Iter<'_, String, XP3FileIndex>[src]

pub fn unpack<W: Write>(
    &self,
    name: &String,
    stream: &mut W
) -> Result<(), XP3Error>
[src]

Unpack file to stream

pub fn close(self) -> (VirtualXP3, T)[src]

Close xp3 archive

Trait Implementations

impl<T: Debug + Read + Seek> Debug for XP3Archive<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for XP3Archive<T>[src]

impl<T> Send for XP3Archive<T> where
    T: Send
[src]

impl<T> !Sync for XP3Archive<T>[src]

impl<T> Unpin for XP3Archive<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for XP3Archive<T> where
    T: UnwindSafe
[src]

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.