Struct nu_engine::Scope[][src]

pub struct Scope { /* fields omitted */ }

Implementations

impl Scope[src]

pub fn new() -> Scope[src]

pub fn get_command(&self, name: &str) -> Option<Command>[src]

pub fn get_aliases_with_name(
    &self,
    name: &str
) -> Option<Vec<Vec<Spanned<String>>>>
[src]

pub fn get_custom_commands_with_name(&self, name: &str) -> Option<Vec<Block>>[src]

pub fn add_command(&self, name: String, command: Command)[src]

pub fn get_command_names(&self) -> Vec<String>[src]

pub fn len(&self) -> usize[src]

pub fn is_empty(&self) -> bool[src]

pub fn has_command(&self, name: &str) -> bool[src]

pub fn has_custom_command(&self, name: &str) -> bool[src]

pub fn has_alias(&self, name: &str) -> bool[src]

pub fn expect_command(&self, name: &str) -> Result<Command, ShellError>[src]

pub fn get_vars(&self) -> IndexMap<String, Value>[src]

pub fn get_env_vars(&self) -> IndexMap<String, String>[src]

pub fn get_var(&self, name: &str) -> Option<Value>[src]

pub fn add_var(&self, name: impl Into<String>, value: Value)[src]

pub fn add_vars(&self, vars: &IndexMap<String, Value>)[src]

pub fn add_env_var(&self, name: impl Into<String>, value: String)[src]

pub fn add_env(&self, env_vars: IndexMap<String, String>)[src]

pub fn add_env_to_base(&self, env_vars: IndexMap<String, String>)[src]

pub fn add_env_var_to_base(&self, name: impl Into<String>, value: String)[src]

Trait Implementations

impl Clone for Scope[src]

impl Debug for Scope[src]

impl Default for Scope[src]

impl ParserScope for Scope[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SpannedItem for T[src]

impl<T> TaggedItem for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,