pub struct RefNode {
pub preds: Vec<Pred>,
pub value: Val,
}
Expand description
Reflected version of engine::MutNode
. Stores a reflected value of type Val
.
Fields§
§preds: Vec<Pred>
§value: Val
Trait Implementations§
impl Eq for RefNode
impl StructuralPartialEq for RefNode
Auto Trait Implementations§
impl Freeze for RefNode
impl RefUnwindSafe for RefNode
impl !Send for RefNode
impl !Sync for RefNode
impl Unpin for RefNode
impl UnwindSafe for RefNode
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