pub enum OpenTarget<W: ApplicationWindowId> {
Alternate,
Application(W),
Current,
Cursor(WordStyle),
List(Count),
Name(String),
Offset(MoveDir1D, Count),
Selection,
Unnamed,
}Expand description
Targets for WindowAction::Open and WindowAction::Switch.
Variants§
Alternate
An alternate window. This is usually the previous window.
Application(W)
An application-specific identifier to switch to.
Current
Use the current window as the target.
Cursor(WordStyle)
Use the word under the cursor as a target name.
List(Count)
An absolute position in a list of targets.
Name(String)
A named target (e.g., a filename to open).
Offset(MoveDir1D, Count)
A window offset from the current one.
Selection
Use the selected text as a target name.
Unnamed
A default window to open when no target has been specified.
Trait Implementations§
Source§impl<W: Clone + ApplicationWindowId> Clone for OpenTarget<W>
impl<W: Clone + ApplicationWindowId> Clone for OpenTarget<W>
Source§fn clone(&self) -> OpenTarget<W>
fn clone(&self) -> OpenTarget<W>
Returns a duplicate 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<W: Debug + ApplicationWindowId> Debug for OpenTarget<W>
impl<W: Debug + ApplicationWindowId> Debug for OpenTarget<W>
Source§impl<W: PartialEq + ApplicationWindowId> PartialEq for OpenTarget<W>
impl<W: PartialEq + ApplicationWindowId> PartialEq for OpenTarget<W>
impl<W: Eq + ApplicationWindowId> Eq for OpenTarget<W>
impl<W: ApplicationWindowId> StructuralPartialEq for OpenTarget<W>
Auto Trait Implementations§
impl<W> Freeze for OpenTarget<W>where
W: Freeze,
impl<W> RefUnwindSafe for OpenTarget<W>where
W: RefUnwindSafe,
impl<W> Send for OpenTarget<W>
impl<W> Sync for OpenTarget<W>where
W: Sync,
impl<W> Unpin for OpenTarget<W>where
W: Unpin,
impl<W> UnwindSafe for OpenTarget<W>where
W: UnwindSafe,
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