pub struct SessionSnapshot {
pub session: SessionRecord,
pub branches: Vec<BranchRecord>,
pub chains: HashMap<BranchId, Vec<EntryRecord>>,
pub active_run: Option<ActiveRunInfo>,
pub current_revision: u64,
pub last_run_seq: Option<u64>,
pub unapplied_steers: Vec<SteerRecord>,
}Fields§
§session: SessionRecord§branches: Vec<BranchRecord>§chains: HashMap<BranchId, Vec<EntryRecord>>§active_run: Option<ActiveRunInfo>Only reflects a live actor’s run. A Running row left behind by a
crashed process is surfaced after recovery-on-next-actor, not here.
current_revision: u64§last_run_seq: Option<u64>§unapplied_steers: Vec<SteerRecord>Trait Implementations§
Source§impl Clone for SessionSnapshot
impl Clone for SessionSnapshot
Source§fn clone(&self) -> SessionSnapshot
fn clone(&self) -> SessionSnapshot
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 Debug for SessionSnapshot
impl Debug for SessionSnapshot
Source§impl<'de> Deserialize<'de> for SessionSnapshot
impl<'de> Deserialize<'de> for SessionSnapshot
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 PartialEq for SessionSnapshot
impl PartialEq for SessionSnapshot
Source§impl Serialize for SessionSnapshot
impl Serialize for SessionSnapshot
impl StructuralPartialEq for SessionSnapshot
Auto Trait Implementations§
impl Freeze for SessionSnapshot
impl RefUnwindSafe for SessionSnapshot
impl Send for SessionSnapshot
impl Sync for SessionSnapshot
impl Unpin for SessionSnapshot
impl UnsafeUnpin for SessionSnapshot
impl UnwindSafe for SessionSnapshot
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