pub struct ItemSummary {
pub id: i32,
pub name: CompactString,
pub item_level: i32,
pub quality: i32,
pub file_name: CompactString,
}Fields§
§id: i32§name: CompactString§item_level: i32§quality: i32§file_name: CompactStringImplementations§
Trait Implementations§
Source§impl Clone for ItemSummary
impl Clone for ItemSummary
Source§fn clone(&self) -> ItemSummary
fn clone(&self) -> ItemSummary
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 ItemSummary
impl Debug for ItemSummary
Source§impl<'de> Deserialize<'de> for ItemSummary
impl<'de> Deserialize<'de> for ItemSummary
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 ItemSummary
impl RefUnwindSafe for ItemSummary
impl Send for ItemSummary
impl Sync for ItemSummary
impl Unpin for ItemSummary
impl UnsafeUnpin for ItemSummary
impl UnwindSafe for ItemSummary
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