pub struct RedPacketReply {
pub tx_serialize: String,
}Expand description
RedPacketReply
JSON schema
{
"type": "object",
"required": [
"txSerialize"
],
"properties": {
"txSerialize": {
"description": "DTO.RED_PACKET.SERIALIZED_TX",
"examples": [
"AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEDRgYGpQEDAQIABQcICQoLDA0ODwAAAAAAAAAAAAAQERITFBUWFxgZGhscHR4fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
],
"type": "string"
}
}
}Fields§
§tx_serialize: StringDTO.RED_PACKET.SERIALIZED_TX
Implementations§
Source§impl RedPacketReply
impl RedPacketReply
pub fn builder() -> RedPacketReply
Trait Implementations§
Source§impl Clone for RedPacketReply
impl Clone for RedPacketReply
Source§fn clone(&self) -> RedPacketReply
fn clone(&self) -> RedPacketReply
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 RedPacketReply
impl Debug for RedPacketReply
Source§impl<'de> Deserialize<'de> for RedPacketReply
impl<'de> Deserialize<'de> for RedPacketReply
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&RedPacketReply> for RedPacketReply
impl From<&RedPacketReply> for RedPacketReply
Source§fn from(value: &RedPacketReply) -> Self
fn from(value: &RedPacketReply) -> Self
Converts to this type from the input type.
Source§impl From<RedPacketReply> for RedPacketReply
impl From<RedPacketReply> for RedPacketReply
Source§fn from(value: RedPacketReply) -> Self
fn from(value: RedPacketReply) -> Self
Converts to this type from the input type.
Source§impl Serialize for RedPacketReply
impl Serialize for RedPacketReply
Source§impl TryFrom<RedPacketReply> for RedPacketReply
impl TryFrom<RedPacketReply> for RedPacketReply
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: RedPacketReply) -> Result<Self, ConversionError>
fn try_from(value: RedPacketReply) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for RedPacketReply
impl RefUnwindSafe for RedPacketReply
impl Send for RedPacketReply
impl Sync for RedPacketReply
impl Unpin for RedPacketReply
impl UnwindSafe for RedPacketReply
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