pub(crate) struct EnchantmentRowWire {Show 19 fields
id: i32,
name: String,
duration: i32,
effect_0: i32,
effect_1: i32,
effect_2: i32,
effect_arg_0: i32,
effect_arg_1: i32,
effect_arg_2: i32,
effect_points_min_0: Option<f64>,
effect_points_min_1: Option<f64>,
effect_points_min_2: Option<f64>,
effect_scaling_points_0: Option<f64>,
effect_scaling_points_1: Option<f64>,
effect_scaling_points_2: Option<f64>,
scaling_class: i32,
item_level_min: i32,
item_level_max: i32,
max_level: i32,
}Fields§
§id: i32§name: String§duration: i32§effect_0: i32§effect_1: i32§effect_2: i32§effect_arg_0: i32§effect_arg_1: i32§effect_arg_2: i32§effect_points_min_0: Option<f64>§effect_points_min_1: Option<f64>§effect_points_min_2: Option<f64>§effect_scaling_points_0: Option<f64>§effect_scaling_points_1: Option<f64>§effect_scaling_points_2: Option<f64>§scaling_class: i32§item_level_min: i32§item_level_max: i32§max_level: i32Trait Implementations§
Source§impl Debug for EnchantmentRowWire
impl Debug for EnchantmentRowWire
Source§impl<'de> Deserialize<'de> for EnchantmentRowWire
impl<'de> Deserialize<'de> for EnchantmentRowWire
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
Source§impl From<EnchantmentRowWire> for EnchantmentRowData
impl From<EnchantmentRowWire> for EnchantmentRowData
Source§fn from(wire: EnchantmentRowWire) -> Self
fn from(wire: EnchantmentRowWire) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EnchantmentRowWire
impl RefUnwindSafe for EnchantmentRowWire
impl Send for EnchantmentRowWire
impl Sync for EnchantmentRowWire
impl Unpin for EnchantmentRowWire
impl UnsafeUnpin for EnchantmentRowWire
impl UnwindSafe for EnchantmentRowWire
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
§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