pub struct Conversation<S> {
pub thread: Option<String>,
pub active: Option<Active<S>>,
pub closing: bool,
}Fields§
§thread: Option<String>§active: Option<Active<S>>§closing: boolTrait Implementations§
Auto Trait Implementations§
impl<S> Freeze for Conversation<S>
impl<S> RefUnwindSafe for Conversation<S>
impl<S> Send for Conversation<S>
impl<S> Sync for Conversation<S>
impl<S> Unpin for Conversation<S>
impl<S> UnsafeUnpin for Conversation<S>
impl<S> UnwindSafe for Conversation<S>
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