pub struct NewChatItems {
pub user: User,
pub chat_items: Vec<AChatItem>,
pub undocumented: BTreeMap<String, JsonObject>,
}Expand description
Fields§
§user: User§chat_items: Vec<AChatItem>§undocumented: BTreeMap<String, JsonObject>Trait Implementations§
Source§impl Clone for NewChatItems
impl Clone for NewChatItems
Source§fn clone(&self) -> NewChatItems
fn clone(&self) -> NewChatItems
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 moreSource§impl Debug for NewChatItems
impl Debug for NewChatItems
Source§impl<'de> Deserialize<'de> for NewChatItems
impl<'de> Deserialize<'de> for NewChatItems
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NewChatItems
impl PartialEq for NewChatItems
Source§impl Serialize for NewChatItems
impl Serialize for NewChatItems
impl StructuralPartialEq for NewChatItems
Auto Trait Implementations§
impl Freeze for NewChatItems
impl RefUnwindSafe for NewChatItems
impl Send for NewChatItems
impl Sync for NewChatItems
impl Unpin for NewChatItems
impl UnwindSafe for NewChatItems
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