pub struct Checked {
pub name: String,
pub spec: Value,
}Expand description
A validated envelope: the strategy name and the resolved Expr tree (parsed
from source, or the spec verbatim). Enough to hand to a runner.
Fields§
§name: String§spec: ValueThe lowered strategy tree, guaranteed to deserialize into Expr.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Checked
impl RefUnwindSafe for Checked
impl Send for Checked
impl Sync for Checked
impl Unpin for Checked
impl UnsafeUnpin for Checked
impl UnwindSafe for Checked
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