pub struct ImplementedSpecInfo {
pub spec_id: u32,
pub class_id: u32,
pub class_name: String,
pub spec_name: String,
pub display_name: String,
pub slug: String,
pub spell_count: usize,
pub aura_count: usize,
pub talent_count: usize,
}Fields§
§spec_id: u32§class_id: u32§class_name: String§spec_name: String§display_name: String§slug: String§spell_count: usize§aura_count: usize§talent_count: usizeTrait Implementations§
Source§impl Clone for ImplementedSpecInfo
impl Clone for ImplementedSpecInfo
Source§fn clone(&self) -> ImplementedSpecInfo
fn clone(&self) -> ImplementedSpecInfo
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 ImplementedSpecInfo
impl Debug for ImplementedSpecInfo
Source§impl<'de> Deserialize<'de> for ImplementedSpecInfo
impl<'de> Deserialize<'de> for ImplementedSpecInfo
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 From<ImplementedSpecInfo> for JsValuewhere
ImplementedSpecInfo: Serialize,
impl From<ImplementedSpecInfo> for JsValuewhere
ImplementedSpecInfo: Serialize,
Source§fn from(value: ImplementedSpecInfo) -> Self
fn from(value: ImplementedSpecInfo) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for ImplementedSpecInfowhere
Self: DeserializeOwned,
impl FromWasmAbi for ImplementedSpecInfowhere
Self: DeserializeOwned,
Source§impl IntoWasmAbi for &ImplementedSpecInfowhere
ImplementedSpecInfo: Serialize,
impl IntoWasmAbi for &ImplementedSpecInfowhere
ImplementedSpecInfo: Serialize,
Source§impl IntoWasmAbi for ImplementedSpecInfowhere
ImplementedSpecInfo: Serialize,
impl IntoWasmAbi for ImplementedSpecInfowhere
ImplementedSpecInfo: Serialize,
Source§impl OptionFromWasmAbi for ImplementedSpecInfowhere
Self: DeserializeOwned,
impl OptionFromWasmAbi for ImplementedSpecInfowhere
Self: DeserializeOwned,
Source§impl OptionIntoWasmAbi for ImplementedSpecInfowhere
ImplementedSpecInfo: Serialize,
impl OptionIntoWasmAbi for ImplementedSpecInfowhere
ImplementedSpecInfo: Serialize,
Source§impl PartialEq for ImplementedSpecInfo
impl PartialEq for ImplementedSpecInfo
Source§impl RefFromWasmAbi for ImplementedSpecInfowhere
Self: DeserializeOwned,
impl RefFromWasmAbi for ImplementedSpecInfowhere
Self: DeserializeOwned,
Source§type Abi = <JsType as RefFromWasmAbi>::Abi
type Abi = <JsType as RefFromWasmAbi>::Abi
The Wasm ABI type references to
Self are recovered from.Source§type Anchor = SelfOwner<ImplementedSpecInfo>
type Anchor = SelfOwner<ImplementedSpecInfo>
The type that holds the reference to
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl Serialize for ImplementedSpecInfo
impl Serialize for ImplementedSpecInfo
Source§impl Tsify for ImplementedSpecInfo
impl Tsify for ImplementedSpecInfo
const DECL: &'static str = "export interface ImplementedSpecInfo {\n spec_id: number;\n class_id: number;\n class_name: string;\n spec_name: string;\n display_name: string;\n slug: string;\n spell_count: number;\n aura_count: number;\n talent_count: number;\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>
Source§impl VectorFromWasmAbi for ImplementedSpecInfowhere
Self: DeserializeOwned,
impl VectorFromWasmAbi for ImplementedSpecInfowhere
Self: DeserializeOwned,
type Abi = <JsType as VectorFromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Self]>
Source§impl VectorIntoWasmAbi for ImplementedSpecInfowhere
ImplementedSpecInfo: Serialize,
impl VectorIntoWasmAbi for ImplementedSpecInfowhere
ImplementedSpecInfo: Serialize,
type Abi = <JsType as VectorIntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[Self]>) -> Self::Abi
Source§impl WasmDescribe for ImplementedSpecInfo
impl WasmDescribe for ImplementedSpecInfo
impl Eq for ImplementedSpecInfo
impl StructuralPartialEq for ImplementedSpecInfo
Auto Trait Implementations§
impl Freeze for ImplementedSpecInfo
impl RefUnwindSafe for ImplementedSpecInfo
impl Send for ImplementedSpecInfo
impl Sync for ImplementedSpecInfo
impl Unpin for ImplementedSpecInfo
impl UnsafeUnpin for ImplementedSpecInfo
impl UnwindSafe for ImplementedSpecInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.