pub struct ForkInfo {
pub forked_session_id: String,
pub fork_entry_id: String,
pub forked_at: DateTime<Utc>,
}Expand description
Metadata about a session fork relationship.
Captures the source session, the forked session, and the entry point from which the fork was created.
Fields§
§forked_session_id: StringThe session ID of the forked (child) session.
fork_entry_id: StringThe entry ID in the source session from which the fork was created.
forked_at: DateTime<Utc>When the fork was created.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ForkInfo
impl RefUnwindSafe for ForkInfo
impl Send for ForkInfo
impl Sync for ForkInfo
impl Unpin for ForkInfo
impl UnsafeUnpin for ForkInfo
impl UnwindSafe for ForkInfo
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