pub enum LineType {
End,
Text,
Label,
Jump,
Menu,
Variable,
Check,
}Expand description
The line types.
Variants§
End
Represents the end of a dialogue.
Text
Represents text in a dialogue.
Label
Represents a position in a dialogue.
Jump
Represents a position change in a dialogue.
Menu
Represents a choice in a dialogue.
Variable
Represents a variable creation in a dialogue.
Check
Represents a conditional statement in a dialogue.
Trait Implementations§
impl Eq for LineType
impl StructuralPartialEq for LineType
Auto Trait Implementations§
impl Freeze for LineType
impl RefUnwindSafe for LineType
impl Send for LineType
impl Sync for LineType
impl Unpin for LineType
impl UnwindSafe for LineType
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