pub struct ItemSetRow {Show 22 fields
pub ID: i32,
pub Name_lang: Option<String>,
pub SetFlags: i32,
pub RequiredSkill: i32,
pub RequiredSkillRank: i32,
pub ItemID_0: i32,
pub ItemID_1: i32,
pub ItemID_2: i32,
pub ItemID_3: i32,
pub ItemID_4: i32,
pub ItemID_5: i32,
pub ItemID_6: i32,
pub ItemID_7: i32,
pub ItemID_8: i32,
pub ItemID_9: i32,
pub ItemID_10: i32,
pub ItemID_11: i32,
pub ItemID_12: i32,
pub ItemID_13: i32,
pub ItemID_14: i32,
pub ItemID_15: i32,
pub ItemID_16: i32,
}Expand description
DBC row from ItemSet.db2: set bonus definition with member item IDs.
Fields§
§ID: i32§Name_lang: Option<String>§SetFlags: i32§RequiredSkill: i32§RequiredSkillRank: i32§ItemID_0: i32§ItemID_1: i32§ItemID_2: i32§ItemID_3: i32§ItemID_4: i32§ItemID_5: i32§ItemID_6: i32§ItemID_7: i32§ItemID_8: i32§ItemID_9: i32§ItemID_10: i32§ItemID_11: i32§ItemID_12: i32§ItemID_13: i32§ItemID_14: i32§ItemID_15: i32§ItemID_16: i32Trait Implementations§
Source§impl Clone for ItemSetRow
impl Clone for ItemSetRow
Source§fn clone(&self) -> ItemSetRow
fn clone(&self) -> ItemSetRow
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 ItemSetRow
impl Debug for ItemSetRow
Source§impl<'de> Deserialize<'de> for ItemSetRow
impl<'de> Deserialize<'de> for ItemSetRow
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 ItemSetRow
impl RefUnwindSafe for ItemSetRow
impl Send for ItemSetRow
impl Sync for ItemSetRow
impl Unpin for ItemSetRow
impl UnsafeUnpin for ItemSetRow
impl UnwindSafe for ItemSetRow
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