pub struct Anonymous {
pub anon_id: Vec<u8>,
pub nick: String,
pub portrait_index: i32,
pub bubble_index: i32,
pub expire_time: i32,
pub color: String,
}Fields
anon_id: Vec<u8>nick: Stringportrait_index: i32bubble_index: i32expire_time: i32color: StringTrait Implementations
sourceimpl From<AnonymousGroupMessage> for Anonymous
impl From<AnonymousGroupMessage> for Anonymous
sourcefn from(e: AnonymousGroupMessage) -> Self
fn from(e: AnonymousGroupMessage) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for Anonymous
impl Send for Anonymous
impl Sync for Anonymous
impl Unpin for Anonymous
impl UnwindSafe for Anonymous
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more