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