pub struct InterruptedSession {
pub session_id: SessionId,
pub last_iteration: i32,
pub last_activity: DateTime<Utc>,
pub task_description: Option<String>,
}Expand description
中断的会话信息
Fields§
§session_id: SessionId§last_iteration: i32§last_activity: DateTime<Utc>§task_description: Option<String>Trait Implementations§
Source§impl Clone for InterruptedSession
impl Clone for InterruptedSession
Source§fn clone(&self) -> InterruptedSession
fn clone(&self) -> InterruptedSession
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 moreAuto Trait Implementations§
impl Freeze for InterruptedSession
impl RefUnwindSafe for InterruptedSession
impl Send for InterruptedSession
impl Sync for InterruptedSession
impl Unpin for InterruptedSession
impl UnsafeUnpin for InterruptedSession
impl UnwindSafe for InterruptedSession
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