pub struct ChildSessionEntry {
pub child_session_id: String,
pub title: String,
pub pinned: bool,
pub message_count: usize,
pub updated_at: String,
pub last_run_status: Option<String>,
pub last_run_error: Option<String>,
}Expand description
Summary of a child session for listing.
Fields§
§child_session_id: String§title: String§pinned: bool§message_count: usize§updated_at: String§last_run_status: Option<String>§last_run_error: Option<String>Trait Implementations§
Source§impl Clone for ChildSessionEntry
impl Clone for ChildSessionEntry
Source§fn clone(&self) -> ChildSessionEntry
fn clone(&self) -> ChildSessionEntry
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 ChildSessionEntry
impl RefUnwindSafe for ChildSessionEntry
impl Send for ChildSessionEntry
impl Sync for ChildSessionEntry
impl Unpin for ChildSessionEntry
impl UnsafeUnpin for ChildSessionEntry
impl UnwindSafe for ChildSessionEntry
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