pub struct UserChatlogData {
pub user_id: LegacyId,
pub user_name: String,
pub rooms: Vec<ChatRecordData>,
}
Fields§
§user_id: LegacyId
§user_name: String
§rooms: Vec<ChatRecordData>
Trait Implementations§
Source§impl Clone for UserChatlogData
impl Clone for UserChatlogData
Source§fn clone(&self) -> UserChatlogData
fn clone(&self) -> UserChatlogData
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 UserChatlogData
impl Debug for UserChatlogData
Source§impl Default for UserChatlogData
impl Default for UserChatlogData
Source§fn default() -> UserChatlogData
fn default() -> UserChatlogData
Returns the “default value” for a type. Read more
Source§impl PacketVariable for UserChatlogData
impl PacketVariable for UserChatlogData
Source§impl PartialEq for UserChatlogData
impl PartialEq for UserChatlogData
impl StructuralPartialEq for UserChatlogData
Auto Trait Implementations§
impl Freeze for UserChatlogData
impl RefUnwindSafe for UserChatlogData
impl Send for UserChatlogData
impl Sync for UserChatlogData
impl Unpin for UserChatlogData
impl UnwindSafe for UserChatlogData
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