pub struct Served<K> {
pub shells: Vec<Attended<K>>,
pub failed: Option<Failure>,
}Expand description
What a served session produced.
Reaching one means the conversation ran and was seen out. A Failure
instead means it never got that far.
Fields§
§shells: Vec<Attended<K>>Every shell that joined, in the order they did.
failed: Option<Failure>What went wrong closing up, if anything: a line left half-read, or a reaction that would not let go.
Auto Trait Implementations§
impl<K> !RefUnwindSafe for Served<K>
impl<K> !UnwindSafe for Served<K>
impl<K> Freeze for Served<K>
impl<K> Send for Served<K>where
K: Send,
impl<K> Sync for Served<K>where
K: Sync,
impl<K> Unpin for Served<K>where
K: Unpin,
impl<K> UnsafeUnpin for Served<K>
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