pub enum DIALOGUE_TYPE {
PlayerDialogue = 0,
CommandDialogue = 1,
SceneDialogue = 2,
Combat = 3,
Favors = 4,
Detection = 5,
Service = 6,
Miscellaneous = 7,
}
Variants§
PlayerDialogue = 0
CommandDialogue = 1
SceneDialogue = 2
Combat = 3
Favors = 4
Detection = 5
Service = 6
Miscellaneous = 7
Implementations§
Source§impl DIALOGUE_TYPE
impl DIALOGUE_TYPE
pub const BRANCHED_TOTAL: usize = 2usize
Trait Implementations§
Source§impl Clone for DIALOGUE_TYPE
impl Clone for DIALOGUE_TYPE
Source§fn clone(&self) -> DIALOGUE_TYPE
fn clone(&self) -> DIALOGUE_TYPE
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DIALOGUE_TYPE
impl Debug for DIALOGUE_TYPE
Source§impl From<DIALOGUE_TYPE> for DIALOGUE_TYPE_CEnum
impl From<DIALOGUE_TYPE> for DIALOGUE_TYPE_CEnum
Source§fn from(value: DIALOGUE_TYPE) -> Self
fn from(value: DIALOGUE_TYPE) -> Self
Converts to this type from the input type.
Source§impl Hash for DIALOGUE_TYPE
impl Hash for DIALOGUE_TYPE
Source§impl Ord for DIALOGUE_TYPE
impl Ord for DIALOGUE_TYPE
Source§fn cmp(&self, other: &DIALOGUE_TYPE) -> Ordering
fn cmp(&self, other: &DIALOGUE_TYPE) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DIALOGUE_TYPE
impl PartialEq for DIALOGUE_TYPE
Source§impl PartialOrd for DIALOGUE_TYPE
impl PartialOrd for DIALOGUE_TYPE
Source§impl TryFrom<DIALOGUE_TYPE_CEnum> for DIALOGUE_TYPE
impl TryFrom<DIALOGUE_TYPE_CEnum> for DIALOGUE_TYPE
impl Copy for DIALOGUE_TYPE
impl Eq for DIALOGUE_TYPE
impl StructuralPartialEq for DIALOGUE_TYPE
Auto Trait Implementations§
impl Freeze for DIALOGUE_TYPE
impl RefUnwindSafe for DIALOGUE_TYPE
impl Send for DIALOGUE_TYPE
impl Sync for DIALOGUE_TYPE
impl Unpin for DIALOGUE_TYPE
impl UnwindSafe for DIALOGUE_TYPE
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