pub enum RouteEditorClick {
SelectStop(usize),
OpenBedPicker,
SheetRow(usize),
TogglePanel,
}Expand description
Mouse actions produced by the gfx overlay and applied on the net thread.
Variants§
SelectStop(usize)
Click a stop row: select it and focus the stop list.
OpenBedPicker
Click the rest-bed header row: open the bed picker.
SheetRow(usize)
Click a sheet row: move the sheet cursor there and activate (Enter).
TogglePanel
Toggle between the full panel and the minimized map-friendly bar.
Trait Implementations§
Source§impl Clone for RouteEditorClick
impl Clone for RouteEditorClick
Source§fn clone(&self) -> RouteEditorClick
fn clone(&self) -> RouteEditorClick
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RouteEditorClick
Source§impl Debug for RouteEditorClick
impl Debug for RouteEditorClick
Source§impl PartialEq for RouteEditorClick
impl PartialEq for RouteEditorClick
impl StructuralPartialEq for RouteEditorClick
Auto Trait Implementations§
impl Freeze for RouteEditorClick
impl RefUnwindSafe for RouteEditorClick
impl Send for RouteEditorClick
impl Sync for RouteEditorClick
impl Unpin for RouteEditorClick
impl UnsafeUnpin for RouteEditorClick
impl UnwindSafe for RouteEditorClick
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