pub struct ItemTemplate {
pub name: Option<String>,
pub tradable: Option<String>,
pub auctionable: Option<String>,
pub bazaarable: Option<String>,
pub enchantable: Option<String>,
pub museumable: Option<String>,
pub reforgeable: Option<String>,
pub soulboundable: Option<String>,
pub sackable: Option<String>,
pub category: Option<String>,
pub lore: Option<String>,
}Fields§
§name: Option<String>§tradable: Option<String>§auctionable: Option<String>§bazaarable: Option<String>§enchantable: Option<String>§museumable: Option<String>§reforgeable: Option<String>§soulboundable: Option<String>§sackable: Option<String>§category: Option<String>§lore: Option<String>Trait Implementations§
Source§impl Clone for ItemTemplate
impl Clone for ItemTemplate
Source§fn clone(&self) -> ItemTemplate
fn clone(&self) -> ItemTemplate
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 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 PartialEq for ItemTemplate
impl PartialEq for ItemTemplate
Source§impl Serialize for ItemTemplate
impl Serialize for ItemTemplate
impl StructuralPartialEq for ItemTemplate
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