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