pub struct UpdateReadChannelDiscussionOutbox {
pub channel_id: i64,
pub top_msg_id: i32,
pub read_max_id: i32,
}Expand description
updateReadChannelDiscussionOutbox
Generated from:
updateReadChannelDiscussionOutbox#695c9e7c channel_id:long top_msg_id:int read_max_id:int = UpdateFields§
§channel_id: i64§top_msg_id: i32§read_max_id: i32Trait Implementations§
Source§impl Clone for UpdateReadChannelDiscussionOutbox
impl Clone for UpdateReadChannelDiscussionOutbox
Source§fn clone(&self) -> UpdateReadChannelDiscussionOutbox
fn clone(&self) -> UpdateReadChannelDiscussionOutbox
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 UpdateReadChannelDiscussionOutbox
impl Deserializable for UpdateReadChannelDiscussionOutbox
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<UpdateReadChannelDiscussionOutbox> for Update
impl From<UpdateReadChannelDiscussionOutbox> for Update
Source§fn from(x: UpdateReadChannelDiscussionOutbox) -> Self
fn from(x: UpdateReadChannelDiscussionOutbox) -> Self
Converts to this type from the input type.
Source§impl Identifiable for UpdateReadChannelDiscussionOutbox
impl Identifiable for UpdateReadChannelDiscussionOutbox
Source§const CONSTRUCTOR_ID: u32 = 0x695c9e7c
const CONSTRUCTOR_ID: u32 = 0x695c9e7c
The constructor ID as specified in the TL schema.
Source§impl PartialEq for UpdateReadChannelDiscussionOutbox
impl PartialEq for UpdateReadChannelDiscussionOutbox
Source§fn eq(&self, other: &UpdateReadChannelDiscussionOutbox) -> bool
fn eq(&self, other: &UpdateReadChannelDiscussionOutbox) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateReadChannelDiscussionOutbox
Auto Trait Implementations§
impl Freeze for UpdateReadChannelDiscussionOutbox
impl RefUnwindSafe for UpdateReadChannelDiscussionOutbox
impl Send for UpdateReadChannelDiscussionOutbox
impl Sync for UpdateReadChannelDiscussionOutbox
impl Unpin for UpdateReadChannelDiscussionOutbox
impl UnsafeUnpin for UpdateReadChannelDiscussionOutbox
impl UnwindSafe for UpdateReadChannelDiscussionOutbox
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