pub enum DelayState {
Pending(Box<dyn Thunk>),
Forced(Value),
}Expand description
Internal state of a delay cell.
Variants§
Auto Trait Implementations§
impl !RefUnwindSafe for DelayState
impl !Send for DelayState
impl !Sync for DelayState
impl !UnwindSafe for DelayState
impl Freeze for DelayState
impl Unpin for DelayState
impl UnsafeUnpin for DelayState
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