FighterData_dmg

Struct FighterData_dmg 

Source
#[repr(C)]
pub struct FighterData_dmg {
Show 78 fields pub behavior: c_int, pub percent: f32, pub x1834: c_int, pub percent_temp: f32, pub applied: f32, pub x1840: c_int, pub direction: f32, pub kb_angle: c_int, pub damaged_hurtbox: c_int, pub force_applied: f32, pub collpos: Vec3, pub dealt: c_int, pub x1864: c_int, pub source: *mut GOBJ, pub x186c: c_int, pub x1870: c_int, pub x1874: c_int, pub x1878: c_int, pub x187c: c_int, pub x1880: c_int, pub x1884: c_int, pub x1888: c_int, pub x188c: c_int, pub x1890: c_int, pub x1894: c_int, pub x1898: c_int, pub x189c: c_int, pub x18a0: c_int, pub kb_mag: f32, pub x18a8: c_int, pub time_since_hit: c_int, pub x18b0: c_int, pub armor: f32, pub x18b8: c_int, pub x18bc: c_int, pub x18c0: c_int, pub source_ply: c_int, pub x18c8: c_int, pub x18cc: c_int, pub x18d0: c_int, pub x18d4: c_int, pub x18d8: c_int, pub x18dc: c_int, pub x18e0: c_int, pub x18e4: c_int, pub x18e8: c_int, pub instancehitby: u16_, pub x18f0: c_int, pub x18f4: c_int, pub x18f8: u8_, pub x18f9: u8_, pub model_shift_frames: u16_, pub x18fc: u8_, pub x18fd: u8_, pub x1900: c_int, pub x1904: c_int, pub x1908: c_int, pub x190c: c_int, pub x1910: c_int, pub x1914: c_int, pub x1918: c_int, pub x191c: c_int, pub x1920: c_int, pub x1924: c_int, pub x1928: c_int, pub x192c: c_int, pub x1930: c_int, pub x1934: c_int, pub x1938: c_int, pub x193c: c_int, pub x1940: c_int, pub x1944: c_int, pub x1948: c_int, pub x194c: c_int, pub x1950: c_int, pub x1954: c_int, pub x1958: c_int, pub hitlag_frames: f32,
}

Fields§

§behavior: c_int§percent: f32§x1834: c_int§percent_temp: f32§applied: f32§x1840: c_int§direction: f32§kb_angle: c_int§damaged_hurtbox: c_int§force_applied: f32§collpos: Vec3§dealt: c_int§x1864: c_int§source: *mut GOBJ§x186c: c_int§x1870: c_int§x1874: c_int§x1878: c_int§x187c: c_int§x1880: c_int§x1884: c_int§x1888: c_int§x188c: c_int§x1890: c_int§x1894: c_int§x1898: c_int§x189c: c_int§x18a0: c_int§kb_mag: f32§x18a8: c_int§time_since_hit: c_int§x18b0: c_int§armor: f32§x18b8: c_int§x18bc: c_int§x18c0: c_int§source_ply: c_int§x18c8: c_int§x18cc: c_int§x18d0: c_int§x18d4: c_int§x18d8: c_int§x18dc: c_int§x18e0: c_int§x18e4: c_int§x18e8: c_int§instancehitby: u16_§x18f0: c_int§x18f4: c_int§x18f8: u8_§x18f9: u8_§model_shift_frames: u16_§x18fc: u8_§x18fd: u8_§x1900: c_int§x1904: c_int§x1908: c_int§x190c: c_int§x1910: c_int§x1914: c_int§x1918: c_int§x191c: c_int§x1920: c_int§x1924: c_int§x1928: c_int§x192c: c_int§x1930: c_int§x1934: c_int§x1938: c_int§x193c: c_int§x1940: c_int§x1944: c_int§x1948: c_int§x194c: c_int§x1950: c_int§x1954: c_int§x1958: c_int§hitlag_frames: f32

Trait Implementations§

Source§

impl Clone for FighterData_dmg

Source§

fn clone(&self) -> FighterData_dmg

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for FighterData_dmg

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for FighterData_dmg

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.