pub struct ItemRow {Show 16 fields
pub ID: i32,
pub ClassID: i32,
pub SubclassID: i32,
pub Material: i32,
pub InventoryType: i32,
pub SheatheType: i32,
pub SoundOverrideSubclassID: i32,
pub IconFileDataID: i32,
pub ItemGroupSoundsID: i32,
pub ContentTuningID: i32,
pub ModifiedCraftingReagentItemID: i32,
pub Field_12_0_0_63534_010: i32,
pub CraftingQualityID: i32,
pub ItemSquishEraID: i32,
pub RecraftReagentCountPercentage: i32,
pub OrderSource: i32,
}Expand description
DBC row from Item.db2: base item data with class, subclass, and inventory type.
Fields§
§ID: i32§ClassID: i32§SubclassID: i32§Material: i32§InventoryType: i32§SheatheType: i32§SoundOverrideSubclassID: i32§IconFileDataID: i32§ItemGroupSoundsID: i32§ContentTuningID: i32§ModifiedCraftingReagentItemID: i32§Field_12_0_0_63534_010: i32§CraftingQualityID: i32§ItemSquishEraID: i32§RecraftReagentCountPercentage: i32§OrderSource: i32Trait Implementations§
Source§impl<'de> Deserialize<'de> for ItemRow
impl<'de> Deserialize<'de> for ItemRow
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 ItemRow
impl RefUnwindSafe for ItemRow
impl Send for ItemRow
impl Sync for ItemRow
impl Unpin for ItemRow
impl UnsafeUnpin for ItemRow
impl UnwindSafe for ItemRow
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