pub struct IslandTableParsed { /* private fields */ }Expand description
Parsed island table — an indexed collection of island entries.
Binary format: count(u16), then count variable-length entries of
[id(u16), trigger(u8), props_mode(u8), name_str_idx(u32), byte_offset(u32), slot_count(u16), [slot_id(u16) x slot_count]].
Implementations§
Trait Implementations§
Source§impl Clone for IslandTableParsed
impl Clone for IslandTableParsed
Source§fn clone(&self) -> IslandTableParsed
fn clone(&self) -> IslandTableParsed
Returns a duplicate 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 IslandTableParsed
impl Debug for IslandTableParsed
Source§impl PartialEq for IslandTableParsed
impl PartialEq for IslandTableParsed
impl Eq for IslandTableParsed
impl StructuralPartialEq for IslandTableParsed
Auto Trait Implementations§
impl Freeze for IslandTableParsed
impl RefUnwindSafe for IslandTableParsed
impl Send for IslandTableParsed
impl Sync for IslandTableParsed
impl Unpin for IslandTableParsed
impl UnsafeUnpin for IslandTableParsed
impl UnwindSafe for IslandTableParsed
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