pub struct ChatView {
pub primary: String,
pub pending: String,
pub history: Vec<String>,
pub actions: Vec<PendingAction>,
}Fields§
§primary: String§pending: String§history: Vec<String>§actions: Vec<PendingAction>Trait Implementations§
impl Eq for ChatView
impl StructuralPartialEq for ChatView
Auto Trait Implementations§
impl Freeze for ChatView
impl RefUnwindSafe for ChatView
impl Send for ChatView
impl Sync for ChatView
impl Unpin for ChatView
impl UnsafeUnpin for ChatView
impl UnwindSafe for ChatView
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