pub struct ExplorerCursorUp {
pub count: usize,
}Fields§
§count: usizeImplementations§
Trait Implementations§
Source§impl Clone for ExplorerCursorUp
impl Clone for ExplorerCursorUp
Source§fn clone(&self) -> ExplorerCursorUp
fn clone(&self) -> ExplorerCursorUp
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 CommandTrait for ExplorerCursorUp
impl CommandTrait for ExplorerCursorUp
Source§fn name(&self) -> &'static str
fn name(&self) -> &'static str
Unique identifier for this command (e.g.,
cursor_up, enter_insert_mode)Source§fn description(&self) -> &'static str
fn description(&self) -> &'static str
Human-readable description for help/documentation
Source§fn execute(&self, ctx: &mut ExecutionContext<'_>) -> CommandResult
fn execute(&self, ctx: &mut ExecutionContext<'_>) -> CommandResult
Execute the command on the given buffer Read more
Source§fn valid_modes(&self) -> Option<Vec<ModeState>>
fn valid_modes(&self) -> Option<Vec<ModeState>>
Optional: which modes this command is valid in (None = all modes)
Source§fn supports_count(&self) -> bool
fn supports_count(&self) -> bool
Optional: does this command support repeat count?
Source§fn is_jump(&self) -> bool
fn is_jump(&self) -> bool
Whether this command is a “jump” that should be recorded in the jump list Read more
Source§fn is_text_modifying(&self) -> bool
fn is_text_modifying(&self) -> bool
Whether this command modifies buffer text content Read more
Source§impl Debug for ExplorerCursorUp
impl Debug for ExplorerCursorUp
Source§impl Default for ExplorerCursorUp
impl Default for ExplorerCursorUp
Source§impl Event for ExplorerCursorUp
impl Event for ExplorerCursorUp
impl Copy for ExplorerCursorUp
Auto Trait Implementations§
impl Freeze for ExplorerCursorUp
impl RefUnwindSafe for ExplorerCursorUp
impl Send for ExplorerCursorUp
impl Sync for ExplorerCursorUp
impl Unpin for ExplorerCursorUp
impl UnwindSafe for ExplorerCursorUp
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