Enum knightrs::Value[][src]

pub enum Value {
    Null,
    Boolean(Boolean),
    Number(Number),
    Text(Text),
    Variable(Variable),
    Ast(Ast),
}

Variants

Null
Boolean(Boolean)
Number(Number)
Text(Text)
Variable(Variable)
Ast(Ast)

Implementations

impl Value[src]

pub fn run(&self, env: &mut Environment<'_, '_, '_>) -> Result<Self>[src]

#[must_use = "getting the type name by itself does nothing."]
pub const fn typename(&self) -> &'static str
[src]

pub fn to_boolean(&self) -> Result<Boolean>[src]

pub fn to_number(&self) -> Result<Number>[src]

pub fn to_text(&self) -> Result<Text>[src]

impl Value[src]

pub fn parse_str<S: AsRef<str>>(
    input: S,
    env: &mut Environment<'_, '_, '_>
) -> Result<Self, ParseError>
[src]

Parses out a stream from the given input within the context of env.

This function simply calls parse with a char iterator over input; see it for more details.

Errors

This function returns any errors that parse returns.

pub fn parse<S: IntoIterator<Item = char>>(
    input: S,
    env: &mut Environment<'_, '_, '_>
) -> Result<Self, ParseError>
[src]

Parses out a stream from the given input within the context of env.

Note: Yes, technically this could be an iterator over u8, as the Knight specs clearly state that all source bytes are a subset of ASCII. However, we may want to support fun stuff like non-ASCII variables as an optional extension in the future. As such, char is required.

Errors

This function returns any errors that occur whilst parsing; See ParseError’s variants for what conditions can cause errors.

See Also

Section 1. within the Knight specs for parsing.

Trait Implementations

impl Clone for Value[src]

fn clone(&self) -> Value[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Value[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for Value[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl From<Text> for Value[src]

fn from(text: Text) -> Self[src]

Performs the conversion.

impl From<Variable> for Value[src]

fn from(variable: Variable) -> Self[src]

Performs the conversion.

impl From<bool> for Value[src]

fn from(boolean: Boolean) -> Self[src]

Performs the conversion.

impl From<i64> for Value[src]

fn from(number: Number) -> Self[src]

Performs the conversion.

impl PartialEq<Value> for Value[src]

fn eq(&self, rhs: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl TryFrom<&'_ Value> for Boolean[src]

type Error = Error

The type returned in the event of a conversion error.

fn try_from(value: &Value) -> Result<Self>[src]

Performs the conversion.

impl TryFrom<&'_ Value> for Text[src]

type Error = Error

The type returned in the event of a conversion error.

fn try_from(value: &Value) -> Result<Self>[src]

Performs the conversion.

impl TryFrom<&'_ Value> for Number[src]

type Error = Error

The type returned in the event of a conversion error.

fn try_from(value: &Value) -> Result<Self>[src]

Performs the conversion.

impl Eq for Value[src]

Auto Trait Implementations

impl !RefUnwindSafe for Value

impl !Send for Value

impl !Sync for Value

impl Unpin for Value

impl !UnwindSafe for Value

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

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]

🔬 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, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

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

pub fn vzip(self) -> V