pub enum MsgResendReq {
MsgResendReq(MsgResendReq),
MsgResendAnsReq(MsgResendAnsReq),
}Expand description
Variants§
MsgResendReq(MsgResendReq)
MsgResendAnsReq(MsgResendAnsReq)
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<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 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 PartialEq for MsgResendReq
impl PartialEq for MsgResendReq
Source§impl Serializable for MsgResendReq
impl Serializable for MsgResendReq
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.
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