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