[][src]Struct emacs::Value

pub struct Value<'e> {
    pub env: &'e Env,
    // some fields omitted
}

A type that represents Lisp values. Values of this type can be copied around, but are lifetime-bound to the Env they come from.

They are also "proxy values" that are only useful when converted to Rust values, or used as arguments when calling back into the Lisp runtime.

Fields

env: &'e Env

Methods

impl<'e> Value<'e>[src]

pub fn into_rust<T: FromLisp<'e>>(self) -> Result<T>[src]

Converts this value into a Rust value of the given type.

pub unsafe fn get_mut<T: Transfer>(&mut self) -> Result<&mut T>[src]

Returns a mutable reference to the underlying Rust data wrapped by this value.

Safety

There are several ways this can go wrong:

  • Lisp code can pass the same object through 2 different values in an argument list.
  • Rust code earlier in the call chain may have copied this value.
  • Rust code later in the call chain may receive a copy of this value.

In general, it is better to wrap Rust data in RefCell, Mutex, or RwLock guards, before moving them to Lisp, and then only access them through these guards (which can be obtained back through into_rust). This method is for squeezing out the last bit of performance in very rare situations.

Trait Implementations

impl<'a, 'e: 'a> FromLisp<'e> for Value<'a>[src]

impl<'e> IntoLisp<'e> for Value<'e>[src]

impl<'e> Copy for Value<'e>[src]

impl<'e> Clone for Value<'e>[src]

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

Performs copy-assignment from source. Read more

impl<'e> Debug for Value<'e>[src]

Auto Trait Implementations

impl<'e> !Send for Value<'e>

impl<'e> !Sync for Value<'e>

Blanket Implementations

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

type Owned = T

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<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]