pub struct ItemArmorQualityRow {
pub ID: i32,
pub Qualitymod_0: f32,
pub Qualitymod_1: f32,
pub Qualitymod_2: f32,
pub Qualitymod_3: f32,
pub Qualitymod_4: f32,
pub Qualitymod_5: f32,
pub Qualitymod_6: f32,
}Expand description
DBC row from ItemArmorQuality.db2: armor quality multipliers by item level.
Fields§
§ID: i32§Qualitymod_0: f32§Qualitymod_1: f32§Qualitymod_2: f32§Qualitymod_3: f32§Qualitymod_4: f32§Qualitymod_5: f32§Qualitymod_6: f32Trait Implementations§
Source§impl Clone for ItemArmorQualityRow
impl Clone for ItemArmorQualityRow
Source§fn clone(&self) -> ItemArmorQualityRow
fn clone(&self) -> ItemArmorQualityRow
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 ItemArmorQualityRow
impl Debug for ItemArmorQualityRow
Source§impl<'de> Deserialize<'de> for ItemArmorQualityRow
impl<'de> Deserialize<'de> for ItemArmorQualityRow
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 ItemArmorQualityRow
impl RefUnwindSafe for ItemArmorQualityRow
impl Send for ItemArmorQualityRow
impl Sync for ItemArmorQualityRow
impl Unpin for ItemArmorQualityRow
impl UnsafeUnpin for ItemArmorQualityRow
impl UnwindSafe for ItemArmorQualityRow
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