pub struct DictionaryMap {
pub spell_ids: Vec<u32>,
pub aura_ids: Vec<u32>,
pub targets: Vec<TargetMapEntry>,
pub units: Vec<UnitMapEntry>,
}Expand description
Lookup tables for dictionary-encoded ids in the analytics view.
Fields§
§spell_ids: Vec<u32>§aura_ids: Vec<u32>§targets: Vec<TargetMapEntry>§units: Vec<UnitMapEntry>Trait Implementations§
Source§impl Clone for DictionaryMap
impl Clone for DictionaryMap
Source§fn clone(&self) -> DictionaryMap
fn clone(&self) -> DictionaryMap
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 DictionaryMap
impl Debug for DictionaryMap
Source§impl Default for DictionaryMap
impl Default for DictionaryMap
Source§fn default() -> DictionaryMap
fn default() -> DictionaryMap
Returns the “default value” for a type. Read more
Source§impl Serialize for DictionaryMap
impl Serialize for DictionaryMap
Source§impl Tsify for DictionaryMap
impl Tsify for DictionaryMap
const DECL: &'static str = "/**\n * Lookup tables for dictionary-encoded ids in the analytics view.\n */\nexport interface DictionaryMap {\n spell_ids: number[];\n aura_ids: number[];\n targets: TargetMapEntry[];\n units: UnitMapEntry[];\n}"
const SERIALIZATION_CONFIG: SerializationConfig
type JsType = JsType
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
Auto Trait Implementations§
impl Freeze for DictionaryMap
impl RefUnwindSafe for DictionaryMap
impl Send for DictionaryMap
impl Sync for DictionaryMap
impl Unpin for DictionaryMap
impl UnsafeUnpin for DictionaryMap
impl UnwindSafe for DictionaryMap
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