pub struct GroupCallStars {
pub total_stars: i64,
pub top_donors: Vec<GroupCallDonor>,
pub chats: Vec<Chat>,
pub users: Vec<User>,
}Expand description
Generated from:
phone.groupCallStars#9d1dbd26 total_stars:long top_donors:Vector<GroupCallDonor> chats:Vector<Chat> users:Vector<User> = phone.GroupCallStarsFields§
§total_stars: i64§top_donors: Vec<GroupCallDonor>§chats: Vec<Chat>§users: Vec<User>Trait Implementations§
Source§impl Clone for GroupCallStars
impl Clone for GroupCallStars
Source§fn clone(&self) -> GroupCallStars
fn clone(&self) -> GroupCallStars
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 GroupCallStars
impl Debug for GroupCallStars
Source§impl Deserializable for GroupCallStars
impl Deserializable for GroupCallStars
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<GroupCallStars> for GroupCallStars
impl From<GroupCallStars> for GroupCallStars
Source§fn from(x: GroupCallStars) -> Self
fn from(x: GroupCallStars) -> Self
Converts to this type from the input type.
Source§impl Identifiable for GroupCallStars
impl Identifiable for GroupCallStars
Source§const CONSTRUCTOR_ID: u32 = 0x9d1dbd26
const CONSTRUCTOR_ID: u32 = 0x9d1dbd26
The constructor ID as specified in the TL schema.
Source§impl PartialEq for GroupCallStars
impl PartialEq for GroupCallStars
Source§impl Serializable for GroupCallStars
impl Serializable for GroupCallStars
Source§impl TryFrom<GroupCallStars> for GroupCallStars
impl TryFrom<GroupCallStars> for GroupCallStars
Source§type Error = GroupCallStars
type Error = GroupCallStars
The type returned in the event of a conversion error.
impl StructuralPartialEq for GroupCallStars
Auto Trait Implementations§
impl Freeze for GroupCallStars
impl RefUnwindSafe for GroupCallStars
impl Send for GroupCallStars
impl Sync for GroupCallStars
impl Unpin for GroupCallStars
impl UnsafeUnpin for GroupCallStars
impl UnwindSafe for GroupCallStars
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