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