pub struct Item {
pub name: Option<String>,
pub unique_name: Option<String>,
pub description: Option<String>,
pub type: Option<String>,
pub tradable: Option<bool>,
pub category: Option<String>,
pub product_category: Option<String>,
pub patchlogs: Option<Vec<Patchlog>>,
pub components: Option<Vec<ShallowItem>>,
pub introduced: Option<Box<Introduced>>,
pub estimated_vault_date: Option<String>,
}Fields§
§name: Option<String>§unique_name: Option<String>§description: Option<String>§type: Option<String>§tradable: Option<bool>§category: Option<String>§product_category: Option<String>§patchlogs: Option<Vec<Patchlog>>§components: Option<Vec<ShallowItem>>§introduced: Option<Box<Introduced>>§estimated_vault_date: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Item
impl<'de> Deserialize<'de> for Item
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
impl StructuralPartialEq for Item
Auto Trait Implementations§
impl Freeze for Item
impl RefUnwindSafe for Item
impl Send for Item
impl Sync for Item
impl Unpin for Item
impl UnwindSafe for Item
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