pub struct RandPropPointsRow {Show 35 fields
pub ID: i32,
pub DamageReplaceStatF: f64,
pub DamageSecondaryF: f64,
pub DamageReplaceStat: i32,
pub DamageSecondary: i32,
pub EpicF_0: f64,
pub EpicF_1: f64,
pub EpicF_2: f64,
pub EpicF_3: f64,
pub EpicF_4: f64,
pub SuperiorF_0: f64,
pub SuperiorF_1: f64,
pub SuperiorF_2: f64,
pub SuperiorF_3: f64,
pub SuperiorF_4: f64,
pub GoodF_0: f64,
pub GoodF_1: f64,
pub GoodF_2: f64,
pub GoodF_3: f64,
pub GoodF_4: f64,
pub Epic_0: i32,
pub Epic_1: i32,
pub Epic_2: i32,
pub Epic_3: i32,
pub Epic_4: i32,
pub Superior_0: i32,
pub Superior_1: i32,
pub Superior_2: i32,
pub Superior_3: i32,
pub Superior_4: i32,
pub Good_0: i32,
pub Good_1: i32,
pub Good_2: i32,
pub Good_3: i32,
pub Good_4: i32,
}Expand description
DBC row from RandPropPoints.db2: stat budget allocation points by item level.
Fields§
§ID: i32§DamageReplaceStatF: f64§DamageSecondaryF: f64§DamageReplaceStat: i32§DamageSecondary: i32§EpicF_0: f64§EpicF_1: f64§EpicF_2: f64§EpicF_3: f64§EpicF_4: f64§SuperiorF_0: f64§SuperiorF_1: f64§SuperiorF_2: f64§SuperiorF_3: f64§SuperiorF_4: f64§GoodF_0: f64§GoodF_1: f64§GoodF_2: f64§GoodF_3: f64§GoodF_4: f64§Epic_0: i32§Epic_1: i32§Epic_2: i32§Epic_3: i32§Epic_4: i32§Superior_0: i32§Superior_1: i32§Superior_2: i32§Superior_3: i32§Superior_4: i32§Good_0: i32§Good_1: i32§Good_2: i32§Good_3: i32§Good_4: i32Trait Implementations§
Source§impl Clone for RandPropPointsRow
impl Clone for RandPropPointsRow
Source§fn clone(&self) -> RandPropPointsRow
fn clone(&self) -> RandPropPointsRow
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 moreSource§impl Debug for RandPropPointsRow
impl Debug for RandPropPointsRow
Source§impl<'de> Deserialize<'de> for RandPropPointsRow
impl<'de> Deserialize<'de> for RandPropPointsRow
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RandPropPointsRow
impl RefUnwindSafe for RandPropPointsRow
impl Send for RandPropPointsRow
impl Sync for RandPropPointsRow
impl Unpin for RandPropPointsRow
impl UnsafeUnpin for RandPropPointsRow
impl UnwindSafe for RandPropPointsRow
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more