pub struct CritterProtoData {
pub sneak_working: i32,
pub flags: i32,
pub base_stats: [i32; 35],
pub bonus_stats: [i32; 35],
pub skills: [i32; 18],
pub body_type: i32,
pub experience: i32,
pub kill_type: i32,
}Fields§
§sneak_working: i32§flags: i32§base_stats: [i32; 35]§bonus_stats: [i32; 35]§skills: [i32; 18]§body_type: i32§experience: i32§kill_type: i32Trait Implementations§
Source§impl Clone for CritterProtoData
impl Clone for CritterProtoData
Source§fn clone(&self) -> CritterProtoData
fn clone(&self) -> CritterProtoData
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 moreAuto Trait Implementations§
impl Freeze for CritterProtoData
impl RefUnwindSafe for CritterProtoData
impl Send for CritterProtoData
impl Sync for CritterProtoData
impl Unpin for CritterProtoData
impl UnsafeUnpin for CritterProtoData
impl UnwindSafe for CritterProtoData
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