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