pub struct GetCollectionParams {
pub launcher_ids: Vec<HexId>,
pub did: Option<HexId>,
}Expand description
Params for dig.getCollection.
Fields§
§launcher_ids: Vec<HexId>The NFT launcher ids to resolve. Capped at 10,000 (over-cap ⇒ -32602).
did: Option<HexId>The optional collection creator DID (64-hex).
Trait Implementations§
Source§impl Clone for GetCollectionParams
impl Clone for GetCollectionParams
Source§fn clone(&self) -> GetCollectionParams
fn clone(&self) -> GetCollectionParams
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 GetCollectionParams
impl Debug for GetCollectionParams
Source§impl<'de> Deserialize<'de> for GetCollectionParams
impl<'de> Deserialize<'de> for GetCollectionParams
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 GetCollectionParams
impl PartialEq for GetCollectionParams
Source§impl Serialize for GetCollectionParams
impl Serialize for GetCollectionParams
impl StructuralPartialEq for GetCollectionParams
Auto Trait Implementations§
impl Freeze for GetCollectionParams
impl RefUnwindSafe for GetCollectionParams
impl Send for GetCollectionParams
impl Sync for GetCollectionParams
impl Unpin for GetCollectionParams
impl UnsafeUnpin for GetCollectionParams
impl UnwindSafe for GetCollectionParams
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