pub struct S2State {
pub typ: u32,
pub parent_class: u32,
pub parent_id: u32,
pub x: f32,
pub y: f32,
pub z: f32,
pub fx: f32,
pub fy: f32,
pub fz: f32,
pub value: u32,
pub value_f: f32,
pub value_s: String,
}Expand description
State record (source e_save_map.bb lines 260–272).
Fields§
§typ: u32§parent_class: u32§parent_id: u32§x: f32§y: f32§z: f32§fx: f32§fy: f32§fz: f32§value: u32§value_f: f32§value_s: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for S2State
impl RefUnwindSafe for S2State
impl Send for S2State
impl Sync for S2State
impl Unpin for S2State
impl UnsafeUnpin for S2State
impl UnwindSafe for S2State
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