pub struct MessageReplies {
pub comments: bool,
pub replies: i32,
pub replies_pts: i32,
pub recent_repliers: Option<Vec<Peer>>,
pub channel_id: Option<i64>,
pub max_id: Option<i32>,
pub read_max_id: Option<i32>,
}Expand description
Generated from:
messageReplies#83d60fc2 flags:# comments:flags.0?true replies:int replies_pts:int recent_repliers:flags.1?Vector<Peer> channel_id:flags.0?long max_id:flags.2?int read_max_id:flags.3?int = MessageRepliesFields§
§comments: bool§replies: i32§replies_pts: i32§recent_repliers: Option<Vec<Peer>>§channel_id: Option<i64>§max_id: Option<i32>§read_max_id: Option<i32>Trait Implementations§
Source§impl Clone for MessageReplies
impl Clone for MessageReplies
Source§fn clone(&self) -> MessageReplies
fn clone(&self) -> MessageReplies
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 MessageReplies
impl Debug for MessageReplies
Source§impl Deserializable for MessageReplies
impl Deserializable for MessageReplies
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<MessageReplies> for MessageReplies
impl From<MessageReplies> for MessageReplies
Source§fn from(x: MessageReplies) -> Self
fn from(x: MessageReplies) -> Self
Converts to this type from the input type.
Source§impl Identifiable for MessageReplies
impl Identifiable for MessageReplies
Source§const CONSTRUCTOR_ID: u32 = 0x83d60fc2
const CONSTRUCTOR_ID: u32 = 0x83d60fc2
The constructor ID as specified in the TL schema.
Source§impl PartialEq for MessageReplies
impl PartialEq for MessageReplies
Source§impl Serializable for MessageReplies
impl Serializable for MessageReplies
Source§impl TryFrom<MessageReplies> for MessageReplies
impl TryFrom<MessageReplies> for MessageReplies
Source§type Error = MessageReplies
type Error = MessageReplies
The type returned in the event of a conversion error.
impl StructuralPartialEq for MessageReplies
Auto Trait Implementations§
impl Freeze for MessageReplies
impl RefUnwindSafe for MessageReplies
impl Send for MessageReplies
impl Sync for MessageReplies
impl Unpin for MessageReplies
impl UnsafeUnpin for MessageReplies
impl UnwindSafe for MessageReplies
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