pub struct BundleFile {
pub m_Header: BundleFileHeader,
pub m_BlocksInfo: Vec<StorageBlock>,
pub m_DirectoryInfo: Vec<FileEntry>,
pub m_BlockReader: Cursor<Vec<u8>>,
/* private fields */
}
Fields§
§m_Header: BundleFileHeader
§m_BlocksInfo: Vec<StorageBlock>
§m_DirectoryInfo: Vec<FileEntry>
§m_BlockReader: Cursor<Vec<u8>>
Implementations§
Source§impl BundleFile
impl BundleFile
pub fn from_reader<T: Read + Seek>( reader: &mut T, config: &ExtractionConfig, ) -> Result<Self, Error>
Trait Implementations§
Source§impl UnityFile for BundleFile
impl UnityFile for BundleFile
fn from_reader<T: Read + Seek>(
reader: &mut T,
config: &ExtractionConfig,
) -> Result<Self, Error>where
Self: Sized,
Auto Trait Implementations§
impl Freeze for BundleFile
impl RefUnwindSafe for BundleFile
impl Send for BundleFile
impl Sync for BundleFile
impl Unpin for BundleFile
impl UnwindSafe for BundleFile
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