pub struct SpellSearchResult {
pub spell_id: SpellId,
pub name: String,
}Expand description
Lightweight search result for spell lookups.
Fields§
§spell_id: SpellId§name: StringTrait Implementations§
Source§impl Clone for SpellSearchResult
impl Clone for SpellSearchResult
Source§fn clone(&self) -> SpellSearchResult
fn clone(&self) -> SpellSearchResult
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 SpellSearchResult
impl Debug for SpellSearchResult
Source§impl<'de> Deserialize<'de> for SpellSearchResult
impl<'de> Deserialize<'de> for SpellSearchResult
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
Auto Trait Implementations§
impl Freeze for SpellSearchResult
impl RefUnwindSafe for SpellSearchResult
impl Send for SpellSearchResult
impl Sync for SpellSearchResult
impl Unpin for SpellSearchResult
impl UnsafeUnpin for SpellSearchResult
impl UnwindSafe for SpellSearchResult
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