pub struct Lair {
pub name: String,
pub description: String,
pub lair_actions: Vec<Paragraph>,
pub regional_effects: Vec<Paragraph>,
}
Fields§
§name: String
§description: String
§lair_actions: Vec<Paragraph>
§regional_effects: Vec<Paragraph>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Lair
impl<'de> Deserialize<'de> for Lair
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
impl Eq for Lair
impl StructuralPartialEq for Lair
Auto Trait Implementations§
impl Freeze for Lair
impl RefUnwindSafe for Lair
impl Send for Lair
impl Sync for Lair
impl Unpin for Lair
impl UnwindSafe for Lair
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