[][src]Struct emacs::Env

pub struct Env { /* fields omitted */ }

Main point of interaction with the Lisp runtime.

Methods

impl Env[src]

Public APIs.

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

pub fn type_of(&self, value: Value) -> Result<Value>[src]

pub fn call(&self, name: &str, args: &[Value]) -> Result<Value>[src]

pub fn is_not_nil(&self, value: Value) -> bool[src]

pub fn eq(&self, a: Value, b: Value) -> bool[src]

pub fn list(&self, args: &[Value]) -> Result<Value>[src]

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

pub fn message(&self, text: &str) -> Result<Value>[src]

Trait Implementations

impl Drop for Env[src]

impl Debug for Env[src]

Auto Trait Implementations

impl !Send for Env

impl !Sync for Env

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]