pub struct DCG {
pub flags: Flags,
/* private fields */
}
Expand description
(DCG) Demanded Computation Graph: The cache of past computation.
The DCG consists of private state (a memo table of DCG nodes, a stack of DCG nodes, edges among these nodes, the current namespace, etc.).
Fields§
§flags: Flags
Trait Implementations§
impl Eq for DCG
Auto Trait Implementations§
impl Freeze for DCG
impl !RefUnwindSafe for DCG
impl !Send for DCG
impl !Sync for DCG
impl Unpin for DCG
impl !UnwindSafe for DCG
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