pub struct ItemLocation {
pub item_id: u32,
pub construction_method: u8,
pub data_reference_index: u16,
pub base_offset: u64,
pub extents: Vec<ItemLocationExtent>,
}
Fields§
§item_id: u32
§construction_method: u8
§data_reference_index: u16
§base_offset: u64
§extents: Vec<ItemLocationExtent>
Trait Implementations§
Source§impl Clone for ItemLocation
impl Clone for ItemLocation
Source§fn clone(&self) -> ItemLocation
fn clone(&self) -> ItemLocation
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 ItemLocation
impl Debug for ItemLocation
Source§impl PartialEq for ItemLocation
impl PartialEq for ItemLocation
impl Eq for ItemLocation
impl StructuralPartialEq for ItemLocation
Auto Trait Implementations§
impl Freeze for ItemLocation
impl RefUnwindSafe for ItemLocation
impl Send for ItemLocation
impl Sync for ItemLocation
impl Unpin for ItemLocation
impl UnwindSafe for ItemLocation
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