pub enum RuntimeCell {
Cold,
Resolving,
Lazy {
code: Arc<Calcit>,
info: Arc<CalcitThunkInfo>,
},
Ready(Calcit),
Errored(Arc<str>),
}Variants§
Trait Implementations§
Source§impl Clone for RuntimeCell
impl Clone for RuntimeCell
Source§fn clone(&self) -> RuntimeCell
fn clone(&self) -> RuntimeCell
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RuntimeCell
impl Debug for RuntimeCell
Source§impl PartialEq for RuntimeCell
impl PartialEq for RuntimeCell
impl Eq for RuntimeCell
impl StructuralPartialEq for RuntimeCell
Auto Trait Implementations§
impl Freeze for RuntimeCell
impl RefUnwindSafe for RuntimeCell
impl Send for RuntimeCell
impl Sync for RuntimeCell
impl Unpin for RuntimeCell
impl UnsafeUnpin for RuntimeCell
impl UnwindSafe for RuntimeCell
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more