[][src]Struct emote_psb::PsbFile

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

Implementations

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

pub fn new(
    header: PsbHeader,
    refs: PsbRefs,
    offsets: PsbOffsets,
    stream: T
) -> Self
[src]

pub fn header(&self) -> PsbHeader[src]

pub fn refs(&self) -> &PsbRefs[src]

pub fn offsets(&self) -> PsbOffsets[src]

pub fn entry_point(&self) -> u32[src]

pub fn load_root(&mut self) -> Result<PsbObject, PsbError>[src]

pub fn load_resources(&mut self) -> Result<Vec<Vec<u8>>, PsbError>[src]

pub fn load_extra(&mut self) -> Result<Vec<Vec<u8>>, PsbError>[src]

pub fn load(&mut self) -> Result<VirtualPsb, PsbError>[src]

Load Psb file to memory. Returns VirtualPsb.

pub fn unwrap(self) -> T[src]

Unwrap stream

Trait Implementations

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

Auto Trait Implementations

impl<T> RefUnwindSafe for PsbFile<T> where
    T: RefUnwindSafe
[src]

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

impl<T> Sync for PsbFile<T> where
    T: Sync
[src]

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

impl<T> UnwindSafe for PsbFile<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.