pub struct ChatOnlines {
pub onlines: i32,
}Expand description
Fields§
§onlines: i32Trait Implementations§
Source§impl Clone for ChatOnlines
impl Clone for ChatOnlines
Source§fn clone(&self) -> ChatOnlines
fn clone(&self) -> ChatOnlines
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 ChatOnlines
impl Debug for ChatOnlines
Source§impl Deserializable for ChatOnlines
impl Deserializable for ChatOnlines
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<ChatOnlines> for ChatOnlines
impl From<ChatOnlines> for ChatOnlines
Source§fn from(x: ChatOnlines) -> Self
fn from(x: ChatOnlines) -> Self
Converts to this type from the input type.
Source§impl Identifiable for ChatOnlines
impl Identifiable for ChatOnlines
Source§const CONSTRUCTOR_ID: u32 = 0xf041e250
const CONSTRUCTOR_ID: u32 = 0xf041e250
The constructor ID as specified in the TL schema.
Source§impl PartialEq for ChatOnlines
impl PartialEq for ChatOnlines
Source§impl Serializable for ChatOnlines
impl Serializable for ChatOnlines
Source§impl TryFrom<ChatOnlines> for ChatOnlines
impl TryFrom<ChatOnlines> for ChatOnlines
Source§type Error = ChatOnlines
type Error = ChatOnlines
The type returned in the event of a conversion error.
impl StructuralPartialEq for ChatOnlines
Auto Trait Implementations§
impl Freeze for ChatOnlines
impl RefUnwindSafe for ChatOnlines
impl Send for ChatOnlines
impl Sync for ChatOnlines
impl Unpin for ChatOnlines
impl UnsafeUnpin for ChatOnlines
impl UnwindSafe for ChatOnlines
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