pub struct ChatShortcut {
pub id: i64,
pub name: String,
pub last_message_text: Option<String>,
pub node_msg_id: i64,
pub user_msg_id: i64,
pub unread: bool,
}Fields§
§id: i64§name: String§last_message_text: Option<String>§node_msg_id: i64§user_msg_id: i64§unread: boolTrait Implementations§
Source§impl Clone for ChatShortcut
impl Clone for ChatShortcut
Source§fn clone(&self) -> ChatShortcut
fn clone(&self) -> ChatShortcut
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 moreAuto Trait Implementations§
impl Freeze for ChatShortcut
impl RefUnwindSafe for ChatShortcut
impl Send for ChatShortcut
impl Sync for ChatShortcut
impl Unpin for ChatShortcut
impl UnwindSafe for ChatShortcut
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