pub struct WitWorld {
pub name: String,
pub items: Vec<WitWorldItem>,
}Expand description
WIT world
Fields§
§name: StringThe name of the world.
items: Vec<WitWorldItem>The items defined in the world.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WitWorld
impl RefUnwindSafe for WitWorld
impl Send for WitWorld
impl Sync for WitWorld
impl Unpin for WitWorld
impl UnsafeUnpin for WitWorld
impl UnwindSafe for WitWorld
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