pub struct PreparedTransition<Record, Step> {
pub token: PrepareToken,
pub record: Record,
pub planned_step: Step,
}Fields§
§token: PrepareToken§record: Record§planned_step: StepEphemeral. The planned step is returned to the caller but never enters the durable record — a rebuild re-derives it from the canonical input and checks its digest, which is what keeps rendered provider contexts out of the journal.
Trait Implementations§
Source§impl<Record: Clone, Step: Clone> Clone for PreparedTransition<Record, Step>
impl<Record: Clone, Step: Clone> Clone for PreparedTransition<Record, Step>
Source§fn clone(&self) -> PreparedTransition<Record, Step>
fn clone(&self) -> PreparedTransition<Record, Step>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de, Record, Step> Deserialize<'de> for PreparedTransition<Record, Step>where
Record: Deserialize<'de>,
Step: Deserialize<'de>,
impl<'de, Record, Step> Deserialize<'de> for PreparedTransition<Record, Step>where
Record: Deserialize<'de>,
Step: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<Record, Step> Serialize for PreparedTransition<Record, Step>
impl<Record, Step> Serialize for PreparedTransition<Record, Step>
impl<Record: PartialEq, Step: PartialEq> StructuralPartialEq for PreparedTransition<Record, Step>
Auto Trait Implementations§
impl<Record, Step> Freeze for PreparedTransition<Record, Step>
impl<Record, Step> RefUnwindSafe for PreparedTransition<Record, Step>where
Record: RefUnwindSafe,
Step: RefUnwindSafe,
impl<Record, Step> Send for PreparedTransition<Record, Step>
impl<Record, Step> Sync for PreparedTransition<Record, Step>
impl<Record, Step> Unpin for PreparedTransition<Record, Step>
impl<Record, Step> UnsafeUnpin for PreparedTransition<Record, Step>where
Record: UnsafeUnpin,
Step: UnsafeUnpin,
impl<Record, Step> UnwindSafe for PreparedTransition<Record, Step>where
Record: UnwindSafe,
Step: UnwindSafe,
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