[][src]Enum nu_protocol::hir::ClassifiedCommand

pub enum ClassifiedCommand {
    Expr(Box<SpannedExpression>),
    Dynamic(Call),
    Internal(InternalCommand),
    Error(ParseError),
}

Variants

Dynamic(Call)
Internal(InternalCommand)
Error(ParseError)

Implementations

impl ClassifiedCommand[src]

pub fn get_free_variables(
    &self,
    known_variables: &mut Vec<String>
) -> Vec<String>
[src]

Trait Implementations

impl Clone for ClassifiedCommand[src]

impl Debug for ClassifiedCommand[src]

impl<'de> Deserialize<'de> for ClassifiedCommand[src]

impl Eq for ClassifiedCommand[src]

impl Hash for ClassifiedCommand[src]

impl Ord for ClassifiedCommand[src]

impl PartialEq<ClassifiedCommand> for ClassifiedCommand[src]

impl PartialOrd<ClassifiedCommand> for ClassifiedCommand[src]

impl Serialize for ClassifiedCommand[src]

impl StructuralEq for ClassifiedCommand[src]

impl StructuralPartialEq for ClassifiedCommand[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

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.