pub struct M2Array<T> {
pub count: u32,
pub offset: u32,
/* private fields */
}Expand description
A reference to an array in the M2 file format
Fields§
§count: u32Number of elements in the array
offset: u32Offset from the start of the file to the array
Implementations§
Trait Implementations§
impl<T: Copy> Copy for M2Array<T>
impl<T> StructuralPartialEq for M2Array<T>
Auto Trait Implementations§
impl<T> Freeze for M2Array<T>
impl<T> RefUnwindSafe for M2Array<T>where
T: RefUnwindSafe,
impl<T> Send for M2Array<T>where
T: Send,
impl<T> Sync for M2Array<T>where
T: Sync,
impl<T> Unpin for M2Array<T>where
T: Unpin,
impl<T> UnwindSafe for M2Array<T>where
T: UnwindSafe,
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