[][src]Struct glsp_engine::RFn

pub struct RFn { /* fields omitted */ }

The rfn primitive type.

To convert a Rust function pointer or a closure into an RFn, call glsp::bind_rfn or glsp::rfn.

Most of this type's methods belong to the callable abstract type, so they can be found in the CallableOps trait. To invoke an RFn, use glsp::call.

RFns are always stored on the garbage-collected heap, so they're normally represented by the type Root<RFn>.

Trait Implementations

impl Debug for RFn[src]

impl Display for RFn[src]

Auto Trait Implementations

impl !RefUnwindSafe for RFn[src]

impl !Send for RFn[src]

impl !Sync for RFn[src]

impl Unpin for RFn[src]

impl !UnwindSafe for RFn[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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

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

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.