pub struct CollectionItem {
pub launcher_id: HexId,
pub coin_id: HexId,
pub owner_did: Option<HexId>,
pub royalty_puzzle_hash: HexId,
pub royalty_basis_points: u64,
pub owner_puzzle_hash: HexId,
pub metadata: Option<NftMetadata>,
}Expand description
One resolved collection item — its current on-chain owner, royalty, and CHIP-0007 metadata.
Fields§
§launcher_id: HexIdThe NFT launcher id (64-hex).
coin_id: HexIdThe current coin id (64-hex).
owner_did: Option<HexId>The current owner DID (64-hex), if any.
royalty_puzzle_hash: HexIdThe royalty puzzle hash (64-hex).
royalty_basis_points: u64The royalty in basis points.
owner_puzzle_hash: HexIdThe current owner puzzle hash (64-hex).
metadata: Option<NftMetadata>The CHIP-0007 metadata, if resolvable.
Trait Implementations§
Source§impl Clone for CollectionItem
impl Clone for CollectionItem
Source§fn clone(&self) -> CollectionItem
fn clone(&self) -> CollectionItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CollectionItem
impl Debug for CollectionItem
Source§impl<'de> Deserialize<'de> for CollectionItem
impl<'de> Deserialize<'de> for CollectionItem
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 PartialEq for CollectionItem
impl PartialEq for CollectionItem
Source§impl Serialize for CollectionItem
impl Serialize for CollectionItem
impl StructuralPartialEq for CollectionItem
Auto Trait Implementations§
impl Freeze for CollectionItem
impl RefUnwindSafe for CollectionItem
impl Send for CollectionItem
impl Sync for CollectionItem
impl Unpin for CollectionItem
impl UnsafeUnpin for CollectionItem
impl UnwindSafe for CollectionItem
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