pub struct S2Item {
pub id: u32,
pub typ: u32,
pub x: f32,
pub y: f32,
pub z: f32,
pub yaw: f32,
pub health: f32,
pub count: u32,
pub parent_class: u8,
pub parent_mode: u8,
pub parent_id: u32,
}Expand description
Item record (source e_save_map.bb lines 192–207).
Fields§
§id: u32§typ: u32§x: f32§y: f32§z: f32§yaw: f32§health: f32§count: u32§parent_class: u8§parent_mode: u8§parent_id: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for S2Item
impl RefUnwindSafe for S2Item
impl Send for S2Item
impl Sync for S2Item
impl Unpin for S2Item
impl UnsafeUnpin for S2Item
impl UnwindSafe for S2Item
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