pub struct SessionRecordLegacy {
pub session_id: String,
pub task: String,
pub started_at: i64,
pub ended_at: Option<i64>,
pub status: String,
pub total_nodes: usize,
pub completed_nodes: usize,
}Expand description
Session record (Legacy wrapper for compatibility)
Fields§
§session_id: String§task: String§started_at: i64§ended_at: Option<i64>§status: String§total_nodes: usize§completed_nodes: usizeTrait Implementations§
Source§impl Clone for SessionRecordLegacy
impl Clone for SessionRecordLegacy
Source§fn clone(&self) -> SessionRecordLegacy
fn clone(&self) -> SessionRecordLegacy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SessionRecordLegacy
impl RefUnwindSafe for SessionRecordLegacy
impl Send for SessionRecordLegacy
impl Sync for SessionRecordLegacy
impl Unpin for SessionRecordLegacy
impl UnwindSafe for SessionRecordLegacy
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