pub struct ExitAst {
pub to: String,
pub hidden: bool,
pub locked: bool,
pub barred_message: Option<String>,
pub required_flags: Vec<String>,
pub required_items: Vec<String>,
}Expand description
Connection between rooms emitted within a room AST.
Fields§
§to: String§locked: bool§barred_message: Option<String>§required_flags: Vec<String>§required_items: Vec<String>Trait Implementations§
impl StructuralPartialEq for ExitAst
Auto Trait Implementations§
impl Freeze for ExitAst
impl RefUnwindSafe for ExitAst
impl Send for ExitAst
impl Sync for ExitAst
impl Unpin for ExitAst
impl UnwindSafe for ExitAst
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