pub struct CreateCollectionData {
pub mint_address: String,
pub url: String,
pub update_authority: String,
pub creator_address: String,
pub name: String,
pub symbol: String,
pub collection: Option<String>,
pub signature: String,
pub status: Option<String>,
}
Fields§
§mint_address: String
§url: String
§creator_address: String
§name: String
§symbol: String
§collection: Option<String>
§signature: String
§status: Option<String>
Trait Implementations§
Source§impl Debug for CreateCollectionData
impl Debug for CreateCollectionData
Source§impl<'de> Deserialize<'de> for CreateCollectionData
impl<'de> Deserialize<'de> for CreateCollectionData
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 CreateCollectionData
impl RefUnwindSafe for CreateCollectionData
impl Send for CreateCollectionData
impl Sync for CreateCollectionData
impl Unpin for CreateCollectionData
impl UnwindSafe for CreateCollectionData
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