pub enum DialogueEntry {
NameChange(String, String),
Phrase(Vec<String>, String),
Choice(Vec<DialogueChoice>),
Jump(String),
}Variants§
Trait Implementations§
Source§impl Debug for DialogueEntry
impl Debug for DialogueEntry
impl Eq for DialogueEntry
Source§impl PartialEq for DialogueEntry
impl PartialEq for DialogueEntry
Source§fn eq(&self, other: &DialogueEntry) -> bool
fn eq(&self, other: &DialogueEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DialogueEntry
Auto Trait Implementations§
impl Freeze for DialogueEntry
impl RefUnwindSafe for DialogueEntry
impl Send for DialogueEntry
impl Sync for DialogueEntry
impl Unpin for DialogueEntry
impl UnsafeUnpin for DialogueEntry
impl UnwindSafe for DialogueEntry
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