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