RcCont

Type Alias RcCont 

Source
pub type RcCont = SafeRc<dyn Cont>;
Expand description

Continuation.

Aliased Type§

pub struct RcCont(/* private fields */);

Trait Implementations§

Source§

impl<T: Cont + 'static> From<Rc<T>> for RcCont

Source§

fn from(value: Rc<T>) -> Self

Converts to this type from the input type.
Source§

impl<T: Cont + 'static> From<T> for RcCont

Source§

fn from(value: T) -> Self

Converts to this type from the input type.
Source§

impl<'a> Load<'a> for RcCont

Source§

fn load_from(slice: &mut CellSlice<'a>) -> Result<Self, Error>

Tries to load itself from a cell slice.