pub enum Details {
TornItemWeaponDetails(TornItemWeaponDetails),
TornItemArmorDetails(TornItemArmorDetails),
}
Variants§
TornItemWeaponDetails(TornItemWeaponDetails)
TornItemArmorDetails(TornItemArmorDetails)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Details
impl<'de> Deserialize<'de> for Details
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<TornItemArmorDetails> for Details
impl From<TornItemArmorDetails> for Details
Source§fn from(value: TornItemArmorDetails) -> Self
fn from(value: TornItemArmorDetails) -> Self
Converts to this type from the input type.
Source§impl From<TornItemWeaponDetails> for Details
impl From<TornItemWeaponDetails> for Details
Source§fn from(value: TornItemWeaponDetails) -> Self
fn from(value: TornItemWeaponDetails) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for Details
Auto Trait Implementations§
impl Freeze for Details
impl RefUnwindSafe for Details
impl Send for Details
impl Sync for Details
impl Unpin for Details
impl UnwindSafe for Details
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