pub struct PSArchiveTOC {
pub length: u32,
pub entry_size: u32,
pub entry_count: u32,
pub flags: PSArchiveFlags,
}
Expand description
PSArchiveTOC contains the table of content and details about each resource
Fields§
§length: u32
length is the total length of the table of contents
entry_size: u32
entry_size contains each entries size
entry_count: u32
entry_count is the amount of entries in the Playstation Archive file
flags: PSArchiveFlags
Trait Implementations§
Source§impl Clone for PSArchiveTOC
impl Clone for PSArchiveTOC
Source§fn clone(&self) -> PSArchiveTOC
fn clone(&self) -> PSArchiveTOC
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PSArchiveTOC
impl Debug for PSArchiveTOC
Source§impl Default for PSArchiveTOC
impl Default for PSArchiveTOC
Source§fn default() -> PSArchiveTOC
fn default() -> PSArchiveTOC
Returns the “default value” for a type. Read more
Source§impl Parsable for PSArchiveTOC
impl Parsable for PSArchiveTOC
Source§impl PartialEq for PSArchiveTOC
impl PartialEq for PSArchiveTOC
impl Eq for PSArchiveTOC
impl StructuralPartialEq for PSArchiveTOC
Auto Trait Implementations§
impl Freeze for PSArchiveTOC
impl RefUnwindSafe for PSArchiveTOC
impl Send for PSArchiveTOC
impl Sync for PSArchiveTOC
impl Unpin for PSArchiveTOC
impl UnwindSafe for PSArchiveTOC
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