pub struct PumpCreateTokenReply {
pub extra: Map<String, Value>,
pub serialized_tx: String,
}Expand description
PumpCreateTokenReply
JSON schema
{
"type": "object",
"required": [
"serializedTx"
],
"properties": {
"extra": {
"description": "DTO.DEX.PUMPFUN.MINT.EXTRA",
"examples": [
{
"token": {
"address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
"decimals": 9
},
"tokenId": "pump_123456"
}
],
"type": "object"
},
"serializedTx": {
"description": "DTO.DEX.PUMPFUN.MINT.SERIALIZED_TX",
"examples": [
"AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEDRgYGpQEDAQIABQcICQoLDA0ODwAAAAAAAAAAAAAQERITFBUWFxgZGhscHR4fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
],
"type": "string"
}
}
}Fields§
§extra: Map<String, Value>DTO.DEX.PUMPFUN.MINT.EXTRA
serialized_tx: StringDTO.DEX.PUMPFUN.MINT.SERIALIZED_TX
Implementations§
Source§impl PumpCreateTokenReply
impl PumpCreateTokenReply
pub fn builder() -> PumpCreateTokenReply
Trait Implementations§
Source§impl Clone for PumpCreateTokenReply
impl Clone for PumpCreateTokenReply
Source§fn clone(&self) -> PumpCreateTokenReply
fn clone(&self) -> PumpCreateTokenReply
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 PumpCreateTokenReply
impl Debug for PumpCreateTokenReply
Source§impl<'de> Deserialize<'de> for PumpCreateTokenReply
impl<'de> Deserialize<'de> for PumpCreateTokenReply
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<&PumpCreateTokenReply> for PumpCreateTokenReply
impl From<&PumpCreateTokenReply> for PumpCreateTokenReply
Source§fn from(value: &PumpCreateTokenReply) -> Self
fn from(value: &PumpCreateTokenReply) -> Self
Converts to this type from the input type.
Source§impl From<PumpCreateTokenReply> for PumpCreateTokenReply
impl From<PumpCreateTokenReply> for PumpCreateTokenReply
Source§fn from(value: PumpCreateTokenReply) -> Self
fn from(value: PumpCreateTokenReply) -> Self
Converts to this type from the input type.
Source§impl Serialize for PumpCreateTokenReply
impl Serialize for PumpCreateTokenReply
Source§impl TryFrom<PumpCreateTokenReply> for PumpCreateTokenReply
impl TryFrom<PumpCreateTokenReply> for PumpCreateTokenReply
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: PumpCreateTokenReply) -> Result<Self, ConversionError>
fn try_from(value: PumpCreateTokenReply) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for PumpCreateTokenReply
impl RefUnwindSafe for PumpCreateTokenReply
impl Send for PumpCreateTokenReply
impl Sync for PumpCreateTokenReply
impl Unpin for PumpCreateTokenReply
impl UnwindSafe for PumpCreateTokenReply
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