pub struct ItemDropScalingFlat {
pub id: i64,
pub item_id: i32,
pub source_kind: DropSourceKind,
pub difficulty_key: DifficultyKey,
pub upgrade_id: i32,
pub flair_id: i32,
}Expand description
Per-(item, source_kind, difficulty) resolved BonusID record.
Fields§
§id: i64Bigserial PK; emit 0, Postgres assigns.
item_id: i32§source_kind: DropSourceKind§difficulty_key: DifficultyKey§upgrade_id: i32Type=49 upgrade bonus list ID; 0 = none.
flair_id: i32Type=4 flair bonus list ID; 0 = none, never set without upgrade_id.
Trait Implementations§
Source§impl Clone for ItemDropScalingFlat
impl Clone for ItemDropScalingFlat
Source§fn clone(&self) -> ItemDropScalingFlat
fn clone(&self) -> ItemDropScalingFlat
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 CopyInsert for ItemDropScalingFlat
impl CopyInsert for ItemDropScalingFlat
Source§impl Debug for ItemDropScalingFlat
impl Debug for ItemDropScalingFlat
Source§impl Default for ItemDropScalingFlat
impl Default for ItemDropScalingFlat
Source§fn default() -> ItemDropScalingFlat
fn default() -> ItemDropScalingFlat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ItemDropScalingFlat
impl<'de> Deserialize<'de> for ItemDropScalingFlat
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 ItemDropScalingFlat
impl RefUnwindSafe for ItemDropScalingFlat
impl Send for ItemDropScalingFlat
impl Sync for ItemDropScalingFlat
impl Unpin for ItemDropScalingFlat
impl UnsafeUnpin for ItemDropScalingFlat
impl UnwindSafe for ItemDropScalingFlat
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