pub struct Info {
pub monsters: Vec<Monster>,
pub families: Vec<Family>,
}
Expand description
Data about a set of monsters and families.
Fields§
§monsters: Vec<Monster>
A list of monsters
families: Vec<Family>
A list of families
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Info
impl Send for Info
impl Sync for Info
impl Unpin for Info
impl UnwindSafe for Info
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