pub struct Cycle {
pub world: WorldState,
pub hypotheses: Vec<Hypothesis>,
pub projections: Vec<Projection>,
pub decision: Decision,
pub record: DecisionRecord,
pub record_path: Option<PathBuf>,
pub remembered: usize,
}Expand description
One complete pass.
Fields§
§world: WorldState§hypotheses: Vec<Hypothesis>§projections: Vec<Projection>§decision: Decision§record: DecisionRecord§record_path: Option<PathBuf>Where the record was written, when it was. None in dry-run.
remembered: usizeMemory records appended by this pass.
Auto Trait Implementations§
impl Freeze for Cycle
impl RefUnwindSafe for Cycle
impl Send for Cycle
impl Sync for Cycle
impl Unpin for Cycle
impl UnsafeUnpin for Cycle
impl UnwindSafe for Cycle
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