pub struct MintNFTPayload {
pub metadata_uri: Option<String>,
pub collection: Option<String>,
pub collection_mint: Option<String>,
pub name: Option<String>,
pub symbol: Option<String>,
pub url: Option<String>,
}
Fields§
§metadata_uri: Option<String>
§collection: Option<String>
§collection_mint: Option<String>
§name: Option<String>
§symbol: Option<String>
§url: Option<String>
Trait Implementations§
Source§impl Debug for MintNFTPayload
impl Debug for MintNFTPayload
Source§impl<'de> Deserialize<'de> for MintNFTPayload
impl<'de> Deserialize<'de> for MintNFTPayload
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
Auto Trait Implementations§
impl Freeze for MintNFTPayload
impl RefUnwindSafe for MintNFTPayload
impl Send for MintNFTPayload
impl Sync for MintNFTPayload
impl Unpin for MintNFTPayload
impl UnwindSafe for MintNFTPayload
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