pub struct GroupCallMessage {
pub from_admin: bool,
pub id: i32,
pub from_id: Peer,
pub date: i32,
pub message: TextWithEntities,
pub paid_message_stars: Option<i64>,
}Expand description
Generated from the following TL definition:
groupCallMessage#1a8afc7e flags:# from_admin:flags.1?true id:int from_id:Peer date:int message:TextWithEntities paid_message_stars:flags.0?long = GroupCallMessageFields§
§from_admin: bool§id: i32§from_id: Peer§date: i32§message: TextWithEntities§paid_message_stars: Option<i64>Trait Implementations§
Source§impl Clone for GroupCallMessage
impl Clone for GroupCallMessage
Source§fn clone(&self) -> GroupCallMessage
fn clone(&self) -> GroupCallMessage
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 GroupCallMessage
impl Debug for GroupCallMessage
Source§impl Deserializable for GroupCallMessage
impl Deserializable for GroupCallMessage
Source§impl From<GroupCallMessage> for GroupCallMessage
impl From<GroupCallMessage> for GroupCallMessage
Source§fn from(x: GroupCallMessage) -> Self
fn from(x: GroupCallMessage) -> Self
Converts to this type from the input type.
Source§impl From<GroupCallMessage> for GroupCallMessage
impl From<GroupCallMessage> for GroupCallMessage
Source§fn from(x: GroupCallMessage) -> Self
fn from(x: GroupCallMessage) -> Self
Converts to this type from the input type.
Source§impl Identifiable for GroupCallMessage
impl Identifiable for GroupCallMessage
Source§const CONSTRUCTOR_ID: u32 = 445316222
const CONSTRUCTOR_ID: u32 = 445316222
The unique identifier for the type.
Source§impl PartialEq for GroupCallMessage
impl PartialEq for GroupCallMessage
Source§impl Serializable for GroupCallMessage
impl Serializable for GroupCallMessage
impl StructuralPartialEq for GroupCallMessage
Auto Trait Implementations§
impl Freeze for GroupCallMessage
impl RefUnwindSafe for GroupCallMessage
impl Send for GroupCallMessage
impl Sync for GroupCallMessage
impl Unpin for GroupCallMessage
impl UnsafeUnpin for GroupCallMessage
impl UnwindSafe for GroupCallMessage
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