pub struct ManifestHeroTalentTree {
pub spells: BTreeMap<String, u32>,
pub auras: BTreeMap<String, u32>,
}Expand description
One hero talent tree under [hero_talents.<name>].
Fields§
§spells: BTreeMap<String, u32>§auras: BTreeMap<String, u32>Trait Implementations§
Source§impl Debug for ManifestHeroTalentTree
impl Debug for ManifestHeroTalentTree
Source§impl<'de> Deserialize<'de> for ManifestHeroTalentTree
impl<'de> Deserialize<'de> for ManifestHeroTalentTree
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 ManifestHeroTalentTree
impl RefUnwindSafe for ManifestHeroTalentTree
impl Send for ManifestHeroTalentTree
impl Sync for ManifestHeroTalentTree
impl Unpin for ManifestHeroTalentTree
impl UnsafeUnpin for ManifestHeroTalentTree
impl UnwindSafe for ManifestHeroTalentTree
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