Struct ares::Procedure [] [src]

pub struct Procedure {
    pub bodies: Rc<Vec<Value>>,
    // some fields omitted
}

Fields

bodies: Rc<Vec<Value>>

Methods

impl Procedure
[src]

fn new(bodies: Rc<Vec<Value>>, param_names: Vec<String>, env: Env) -> Procedure

Trait Implementations

impl Clone for Procedure
[src]

fn clone(&self) -> Procedure

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl PartialEq for Procedure
[src]

fn eq(&self, other: &Procedure) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Eq for Procedure
[src]

impl Debug for Procedure
[src]

fn fmt(&self, fmt: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl Hash for Procedure
[src]

fn hash<H>(&self, state: &mut H) where H: Hasher

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.