pub struct SolanaNFTExtended {
pub name: String,
pub seller_fee_basic_points: usize,
pub update_authority_address: String,
pub description: Option<String>,
pub image: Option<String>,
pub external_url: Option<String>,
pub creators: Vec<Creator>,
pub owner: Option<Owner>,
pub attributes: Option<Vec<MetadataAttribute>>,
pub listings: Option<Vec<SolanaNFTListing>>,
}
Fields§
§name: String
§seller_fee_basic_points: usize
§description: Option<String>
§image: Option<String>
§external_url: Option<String>
§creators: Vec<Creator>
§owner: Option<Owner>
§attributes: Option<Vec<MetadataAttribute>>
§listings: Option<Vec<SolanaNFTListing>>
Trait Implementations§
Source§impl Debug for SolanaNFTExtended
impl Debug for SolanaNFTExtended
Source§impl<'de> Deserialize<'de> for SolanaNFTExtended
impl<'de> Deserialize<'de> for SolanaNFTExtended
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 SolanaNFTExtended
impl RefUnwindSafe for SolanaNFTExtended
impl Send for SolanaNFTExtended
impl Sync for SolanaNFTExtended
impl Unpin for SolanaNFTExtended
impl UnwindSafe for SolanaNFTExtended
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