pub struct UpdateDeleteScheduledMessages {
pub peer: Peer,
pub messages: Vec<i32>,
pub sent_messages: Option<Vec<i32>>,
}Expand description
Generated from:
updateDeleteScheduledMessages#f2a71983 flags:# peer:Peer messages:Vector<int> sent_messages:flags.0?Vector<int> = UpdateFields§
§peer: Peer§messages: Vec<i32>§sent_messages: Option<Vec<i32>>Trait Implementations§
Source§impl Clone for UpdateDeleteScheduledMessages
impl Clone for UpdateDeleteScheduledMessages
Source§fn clone(&self) -> UpdateDeleteScheduledMessages
fn clone(&self) -> UpdateDeleteScheduledMessages
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 Deserializable for UpdateDeleteScheduledMessages
impl Deserializable for UpdateDeleteScheduledMessages
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<UpdateDeleteScheduledMessages> for Update
impl From<UpdateDeleteScheduledMessages> for Update
Source§fn from(x: UpdateDeleteScheduledMessages) -> Self
fn from(x: UpdateDeleteScheduledMessages) -> Self
Converts to this type from the input type.
Source§impl Identifiable for UpdateDeleteScheduledMessages
impl Identifiable for UpdateDeleteScheduledMessages
Source§const CONSTRUCTOR_ID: u32 = 0xf2a71983
const CONSTRUCTOR_ID: u32 = 0xf2a71983
The constructor ID as specified in the TL schema.
Source§impl PartialEq for UpdateDeleteScheduledMessages
impl PartialEq for UpdateDeleteScheduledMessages
Source§fn eq(&self, other: &UpdateDeleteScheduledMessages) -> bool
fn eq(&self, other: &UpdateDeleteScheduledMessages) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateDeleteScheduledMessages
Auto Trait Implementations§
impl Freeze for UpdateDeleteScheduledMessages
impl RefUnwindSafe for UpdateDeleteScheduledMessages
impl Send for UpdateDeleteScheduledMessages
impl Sync for UpdateDeleteScheduledMessages
impl Unpin for UpdateDeleteScheduledMessages
impl UnsafeUnpin for UpdateDeleteScheduledMessages
impl UnwindSafe for UpdateDeleteScheduledMessages
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