Enum nu_protocol::CommandAction [−][src]
pub enum CommandAction {
ChangePath(String),
Exit(i32),
Error(ShellError),
EnterShell(String),
AutoConvert(Value, String),
EnterValueShell(Value),
AddPlugins(String),
UnloadConfig(ConfigPath),
LoadConfig(ConfigPath),
PreviousShell,
NextShell,
LeaveShell(i32),
}Expand description
The inner set of actions for the command processor. Each denotes a way to change state in the processor without changing it directly from the command itself.
Variants
ChangePath(String)Expand description
Change to a new directory or path (in non-filesystem situations)
Exit(i32)Expand description
Exit out of Nu
Error(ShellError)Expand description
Display an error
EnterShell(String)Expand description
Enter a new shell at the given path
Expand description
Convert the value given from one type to another
EnterValueShell(Value)Expand description
Enter a value shell, one that allows exploring inside of a Value
AddPlugins(String)Expand description
Add plugins from path given
UnloadConfig(ConfigPath)Expand description
Unload the config specified by PathBuf if present
LoadConfig(ConfigPath)Expand description
Load the config specified by PathBuf
Expand description
Go to the previous shell in the shell ring buffer
Expand description
Go to the next shell in the shell ring buffer
LeaveShell(i32)Expand description
Leave the current shell. If it’s the last shell, exit out of Nu
Trait Implementations
impl Clone for CommandAction[src]
impl Clone for CommandAction[src]fn clone(&self) -> CommandAction[src]
fn clone(&self) -> CommandAction[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for CommandAction[src]
impl Debug for CommandAction[src]impl<'de> Deserialize<'de> for CommandAction[src]
impl<'de> Deserialize<'de> for CommandAction[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
impl PrettyDebug for CommandAction[src]
impl PrettyDebug for CommandAction[src]fn pretty(&self) -> DebugDocBuilder[src]
fn pretty(&self) -> DebugDocBuilder[src]Get a command action ready to be pretty-printed
fn to_doc(&self) -> DebugDoc[src]
fn pretty_doc(
&self
) -> Doc<'static, BoxDoc<'static, ShellAnnotation>, ShellAnnotation>[src]
&self
) -> Doc<'static, BoxDoc<'static, ShellAnnotation>, ShellAnnotation>
fn pretty_builder(&self) -> DocBuilder<'static, BoxAllocator, ShellAnnotation>[src]
fn display(&self) -> String[src]
fn display(&self) -> String[src]A convenience method that prints out the document without colors in 70 columns. Generally, you should use plain_string or colored_string if possible, but display() can be useful for trace lines and things like that, where you don’t have control over the terminal. Read more
fn plain_string(&self, width: usize) -> String[src]
fn colored_string(&self, width: usize) -> String[src]
impl Serialize for CommandAction[src]
impl Serialize for CommandAction[src]Auto Trait Implementations
impl RefUnwindSafe for CommandAction
impl Send for CommandAction
impl Sync for CommandAction
impl Unpin for CommandAction
impl UnwindSafe for CommandAction
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> PrettyDebugWithSource for T where
T: PrettyDebug, [src]
impl<T> PrettyDebugWithSource for T where
T: PrettyDebug, [src]pub fn pretty_debug(&self, _source: &str) -> DebugDocBuilder[src]
fn refined_pretty_debug(
&self,
_refine: PrettyDebugRefineKind,
source: &str
) -> DebugDocBuilder[src]
&self,
_refine: PrettyDebugRefineKind,
source: &str
) -> DebugDocBuilder
fn debug(&self, source: impl Into<Text>) -> String where
Self: Clone, [src]
Self: Clone,
fn debuggable(self, source: impl Into<Text>) -> DebuggableWithSource<Self>[src]
impl<T> SpannedItem for T[src]
impl<T> SpannedItem for T[src]impl<T> TaggedItem for T[src]
impl<T> TaggedItem for T[src]impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,