Trait emacs::FromLisp[][src]

pub trait FromLisp<'e>: Sized {
    fn from_lisp(value: Value<'e>) -> Result<Self>;
}
Expand description

Converting Lisp Value into a Rust type.

Implementation

The lifetime parameter is put on the trait itself, instead of the method. This allows it to be implemented for Value itself.

Required methods

Implementations on Foreign Types

Implementors