pub struct PrevBuffer;Expand description
Switch to the previous buffer.
Trait Implementations§
Source§impl Clone for PrevBuffer
impl Clone for PrevBuffer
Source§fn clone(&self) -> PrevBuffer
fn clone(&self) -> PrevBuffer
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 Command for PrevBuffer
impl Command for PrevBuffer
Source§fn description(&self) -> &'static str
fn description(&self) -> &'static str
Get a human-readable description of what this command does.
Source§fn complete(&self, _partial: &str) -> Vec<String>
fn complete(&self, _partial: &str) -> Vec<String>
Get tab-completion candidates for this command’s arguments. Read more
Source§fn priority(&self) -> CommandPriority
fn priority(&self) -> CommandPriority
Registration priority (#545). Read more
Source§impl CommandHandler for PrevBuffer
impl CommandHandler for PrevBuffer
Source§fn execute(
&self,
runtime: &mut SessionRuntime<'_>,
_args: &CommandContext,
) -> CommandResult
fn execute( &self, runtime: &mut SessionRuntime<'_>, _args: &CommandContext, ) -> CommandResult
Execute the command. Read more
Source§impl Debug for PrevBuffer
impl Debug for PrevBuffer
Source§impl Default for PrevBuffer
impl Default for PrevBuffer
Source§fn default() -> PrevBuffer
fn default() -> PrevBuffer
Returns the “default value” for a type. Read more
impl Copy for PrevBuffer
Auto Trait Implementations§
impl Freeze for PrevBuffer
impl RefUnwindSafe for PrevBuffer
impl Send for PrevBuffer
impl Sync for PrevBuffer
impl Unpin for PrevBuffer
impl UnsafeUnpin for PrevBuffer
impl UnwindSafe for PrevBuffer
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