pub struct InputMessageReplyTo {
pub id: i32,
}Expand description
Fields§
§id: i32Trait Implementations§
Source§impl Clone for InputMessageReplyTo
impl Clone for InputMessageReplyTo
Source§fn clone(&self) -> InputMessageReplyTo
fn clone(&self) -> InputMessageReplyTo
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 InputMessageReplyTo
impl Debug for InputMessageReplyTo
Source§impl Deserializable for InputMessageReplyTo
impl Deserializable for InputMessageReplyTo
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<InputMessageReplyTo> for InputMessage
impl From<InputMessageReplyTo> for InputMessage
Source§fn from(x: InputMessageReplyTo) -> Self
fn from(x: InputMessageReplyTo) -> Self
Converts to this type from the input type.
Source§impl Identifiable for InputMessageReplyTo
impl Identifiable for InputMessageReplyTo
Source§const CONSTRUCTOR_ID: u32 = 0xbad88395
const CONSTRUCTOR_ID: u32 = 0xbad88395
The constructor ID as specified in the TL schema.
Source§impl PartialEq for InputMessageReplyTo
impl PartialEq for InputMessageReplyTo
Source§impl Serializable for InputMessageReplyTo
impl Serializable for InputMessageReplyTo
Source§impl TryFrom<InputMessage> for InputMessageReplyTo
impl TryFrom<InputMessage> for InputMessageReplyTo
Source§type Error = InputMessage
type Error = InputMessage
The type returned in the event of a conversion error.
impl StructuralPartialEq for InputMessageReplyTo
Auto Trait Implementations§
impl Freeze for InputMessageReplyTo
impl RefUnwindSafe for InputMessageReplyTo
impl Send for InputMessageReplyTo
impl Sync for InputMessageReplyTo
impl Unpin for InputMessageReplyTo
impl UnsafeUnpin for InputMessageReplyTo
impl UnwindSafe for InputMessageReplyTo
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