pub struct StepContext<'a> {
pub iteration: usize,
pub frame_index: Option<usize>,
pub batch_index: Option<usize>,
pub state: &'a ReconstructionState,
pub diagnostics: &'a Diagnostics,
pub history: &'a ReconstructionHistory,
pub model: &'a ImagePlaneModel,
pub problem_name: Option<&'a str>,
}Fields§
§iteration: usize§frame_index: Option<usize>§batch_index: Option<usize>§state: &'a ReconstructionState§diagnostics: &'a Diagnostics§history: &'a ReconstructionHistory§model: &'a ImagePlaneModel§problem_name: Option<&'a str>Auto Trait Implementations§
impl<'a> Freeze for StepContext<'a>
impl<'a> !RefUnwindSafe for StepContext<'a>
impl<'a> Send for StepContext<'a>
impl<'a> Sync for StepContext<'a>
impl<'a> Unpin for StepContext<'a>
impl<'a> UnsafeUnpin for StepContext<'a>
impl<'a> !UnwindSafe for StepContext<'a>
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