Enum risp::types::RispType [] [src]

pub enum RispType {
    Int(i64),
    List(Vec<RispType>),
    Vector(Vec<RispType>),
    Map(HashMap<String, RispType>),
    Keyword(String),
    Symbol(String),
    Function(fn(_: Vec<RispType>) -> RispResult),
}

Variants

Trait Implementations

impl Debug for RispType
[src]

Formats the value using the given formatter.

impl PartialEq for RispType
[src]

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

This method tests for !=.

impl Clone for RispType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more