pub struct ItemTemplate {
pub id: ItemTemplateId,
pub name: I18nString,
pub icon_url: String,
pub icon_path: String,
pub item_type: ItemType,
pub rarity_id: ItemRarityId,
pub attributes_settings: ItemAttributeSettings,
pub skin_id: Option<SkinId>,
pub exclude_from_mimic: bool,
}Fields§
§id: ItemTemplateId§name: I18nString§icon_url: String§icon_path: String§item_type: ItemType§rarity_id: ItemRarityId§attributes_settings: ItemAttributeSettings§skin_id: Option<SkinId>§exclude_from_mimic: boolTrait Implementations§
Source§impl Clone for ItemTemplate
impl Clone for ItemTemplate
Source§fn clone(&self) -> ItemTemplate
fn clone(&self) -> ItemTemplate
Returns a copy 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 ItemTemplate
impl Debug for ItemTemplate
Source§impl<'de> Deserialize<'de> for ItemTemplate
impl<'de> Deserialize<'de> for ItemTemplate
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 JsonSchema for ItemTemplate
impl JsonSchema for ItemTemplate
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl Serialize for ItemTemplate
impl Serialize for ItemTemplate
Source§impl Tsify for ItemTemplate
impl Tsify for ItemTemplate
const DECL: &'static str = "export interface ItemTemplate {\n id: ItemTemplateId;\n name: I18nString;\n icon_url: string;\n icon_path: string;\n item_type: ItemType;\n rarity_id: ItemRarityId;\n attributes_settings: ItemAttributeSettings;\n skin_id: SkinId | null;\n exclude_from_mimic: boolean;\n}"
const SERIALIZATION_CONFIG: SerializationConfig
type JsType = JsType
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
fn from_js<T>(js: T) -> Result<Self, Error>
Auto Trait Implementations§
impl Freeze for ItemTemplate
impl RefUnwindSafe for ItemTemplate
impl Send for ItemTemplate
impl Sync for ItemTemplate
impl Unpin for ItemTemplate
impl UnwindSafe for ItemTemplate
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