pub enum Target {
Show 23 variants
CurrentMapId = 0,
PlayingBGM = 1,
PlayingBGS = 2,
BGMPosition = 3,
BGSPosition = 4,
CurrentBGMLength = 5,
CurrentBGSLength = 6,
MouseLeftClick = 7,
MouseRightClick = 8,
MouseMiddleClick = 9,
MouseWheelDelta = 10,
MouseXDelta = 11,
MouseYDelta = 12,
EventIDAtMousePosition = 13,
CallerId = 14,
MapWidth = 15,
MapHeight = 16,
ThisCommonId = 17,
ActiveEventId = 18,
ActiveEventLine = 19,
MouseX = 20,
MouseY = 21,
Unknown = 22,
}Variants§
CurrentMapId = 0
PlayingBGM = 1
PlayingBGS = 2
BGMPosition = 3
BGSPosition = 4
CurrentBGMLength = 5
CurrentBGSLength = 6
MouseLeftClick = 7
MouseRightClick = 8
MouseMiddleClick = 9
MouseWheelDelta = 10
MouseXDelta = 11
MouseYDelta = 12
EventIDAtMousePosition = 13
CallerId = 14
MapWidth = 15
MapHeight = 16
ThisCommonId = 17
ActiveEventId = 18
ActiveEventLine = 19
MouseX = 20
MouseY = 21
Unknown = 22
Implementations§
Auto Trait Implementations§
impl Freeze for Target
impl RefUnwindSafe for Target
impl Send for Target
impl Sync for Target
impl Unpin for Target
impl UnwindSafe for Target
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