pub struct HeroTalentTreeDesc {
pub name: &'static str,
pub spells: &'static [(&'static str, u32)],
pub auras: &'static [(&'static str, u32)],
}Expand description
Static description of one hero talent tree.
Fields§
§name: &'static str§spells: &'static [(&'static str, u32)]§auras: &'static [(&'static str, u32)]Trait Implementations§
Source§impl Clone for HeroTalentTreeDesc
impl Clone for HeroTalentTreeDesc
Source§fn clone(&self) -> HeroTalentTreeDesc
fn clone(&self) -> HeroTalentTreeDesc
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 HeroTalentTreeDesc
impl Debug for HeroTalentTreeDesc
Source§impl PartialEq for HeroTalentTreeDesc
impl PartialEq for HeroTalentTreeDesc
impl Copy for HeroTalentTreeDesc
impl Eq for HeroTalentTreeDesc
impl StructuralPartialEq for HeroTalentTreeDesc
Auto Trait Implementations§
impl Freeze for HeroTalentTreeDesc
impl RefUnwindSafe for HeroTalentTreeDesc
impl Send for HeroTalentTreeDesc
impl Sync for HeroTalentTreeDesc
impl Unpin for HeroTalentTreeDesc
impl UnsafeUnpin for HeroTalentTreeDesc
impl UnwindSafe for HeroTalentTreeDesc
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