pub struct SpecSection {
pub id: u32,
pub has_pet: bool,
pub custom_handler: Option<String>,
pub precombat_auras: Option<Vec<String>>,
pub stealth_aura: Option<String>,
}Expand description
[spec] block identifying the spec.
Fields§
§id: u32§has_pet: bool§custom_handler: Option<String>§precombat_auras: Option<Vec<String>>§stealth_aura: Option<String>Trait Implementations§
Source§impl Debug for SpecSection
impl Debug for SpecSection
Source§impl<'de> Deserialize<'de> for SpecSection
impl<'de> Deserialize<'de> for SpecSection
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 SpecSection
impl RefUnwindSafe for SpecSection
impl Send for SpecSection
impl Sync for SpecSection
impl Unpin for SpecSection
impl UnsafeUnpin for SpecSection
impl UnwindSafe for SpecSection
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