#[repr(u32)]pub enum Dispatcher {
ModEvent = 0,
CameraEvent = 1,
CrosshairEvent = 2,
ActionEvent = 3,
NiNodeUpdateEvent = 4,
}
Expand description
Represents the different event dispatchers that SKSE provides.
Variants§
ModEvent = 0
Dispatcher for mod events.
CameraEvent = 1
Dispatcher for camera events.
CrosshairEvent = 2
Dispatcher for crosshair events.
ActionEvent = 3
Dispatcher for action events.
NiNodeUpdateEvent = 4
Dispatcher for NiNode update events.
Trait Implementations§
Source§impl Clone for Dispatcher
impl Clone for Dispatcher
Source§fn clone(&self) -> Dispatcher
fn clone(&self) -> Dispatcher
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 Dispatcher
impl Debug for Dispatcher
Source§impl From<Dispatcher> for Dispatcher_CEnum
impl From<Dispatcher> for Dispatcher_CEnum
Source§fn from(value: Dispatcher) -> Self
fn from(value: Dispatcher) -> Self
Converts to this type from the input type.
Source§impl Hash for Dispatcher
impl Hash for Dispatcher
Source§impl Ord for Dispatcher
impl Ord for Dispatcher
Source§fn cmp(&self, other: &Dispatcher) -> Ordering
fn cmp(&self, other: &Dispatcher) -> 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 Dispatcher
impl PartialEq for Dispatcher
Source§impl PartialOrd for Dispatcher
impl PartialOrd for Dispatcher
Source§impl TryFrom<Dispatcher_CEnum> for Dispatcher
impl TryFrom<Dispatcher_CEnum> for Dispatcher
impl Copy for Dispatcher
impl Eq for Dispatcher
impl StructuralPartialEq for Dispatcher
Auto Trait Implementations§
impl Freeze for Dispatcher
impl RefUnwindSafe for Dispatcher
impl Send for Dispatcher
impl Sync for Dispatcher
impl Unpin for Dispatcher
impl UnwindSafe for Dispatcher
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