Skip to main content

Study

Struct Study 

Source
pub struct Study { /* private fields */ }
Expand description

Non-clone scheduler and display owner for one declared study plan.

Implementations§

Source§

impl Study

Source

pub fn builder(record_path: impl Into<PathBuf>) -> StudyBuilder

Starts an empty builder with the mandatory study-record destination.

Source

pub fn phases(&self) -> &[Phase]

Borrows all registered phases in deterministic declaration order.

Source

pub fn plan(&self) -> StudyPlan

Materializes a deterministic, side-effect-free description of every registered phase and task.

Source

pub fn write_plan_json(&self, path: impl AsRef<Path>) -> Result<(), StudyError>

Writes the complete registered plan as pretty JSON without running it. An existing byte-identical file is accepted. Different existing content is rejected and never overwritten.

Source

pub fn phase(&self, id: impl Into<PhaseId>) -> Option<&Phase>

Borrows one registered phase by stable ID.

Source

pub fn cancellation_token(&self) -> CancellationToken

Returns a cheap token that can request or observe study cancellation.

Source

pub fn unique_task_matching( &self, selector: &TaskSelector, ) -> Result<&Task, StudyError>

Returns the unique task matching an exact partial selector.

Source

pub fn run(self) -> Result<StudySummary, StudyError>

Runs every registered phase in dependency order.

Source

pub fn run_phases<I, P>(self, phases: I) -> Result<StudySummary, StudyError>
where I: IntoIterator<Item = P>, P: Into<PhaseId>,

Runs exactly the selected phases; omitted unsatisfied dependencies fail.

Source

pub fn run_phases_with_dependencies<I, P>( self, phases: I, ) -> Result<StudySummary, StudyError>
where I: IntoIterator<Item = P>, P: Into<PhaseId>,

Adds unsatisfied dependencies and runs the deterministic closure.

Trait Implementations§

Source§

impl Debug for Study

Source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl !RefUnwindSafe for Study

§

impl !Sync for Study

§

impl !UnwindSafe for Study

§

impl Freeze for Study

§

impl Send for Study

§

impl Unpin for Study

§

impl UnsafeUnpin for Study

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.