pub struct FetchCollectionTokenDetailsParams {
pub id: String,
pub token_id: String,
}
Expand description
struct for passing parameters to the method
[fetch_collection_token_details
]
Fields§
§id: String
The collection link id
token_id: String
The tokenId as it appears on the blockchain
Implementations§
Source§impl FetchCollectionTokenDetailsParams
impl FetchCollectionTokenDetailsParams
Sourcepub fn builder() -> FetchCollectionTokenDetailsParamsBuilder
pub fn builder() -> FetchCollectionTokenDetailsParamsBuilder
Create an instance of FetchCollectionTokenDetailsParams
using the builder syntax
Trait Implementations§
Source§impl Clone for FetchCollectionTokenDetailsParams
impl Clone for FetchCollectionTokenDetailsParams
Source§fn clone(&self) -> FetchCollectionTokenDetailsParams
fn clone(&self) -> FetchCollectionTokenDetailsParams
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for FetchCollectionTokenDetailsParams
impl RefUnwindSafe for FetchCollectionTokenDetailsParams
impl Send for FetchCollectionTokenDetailsParams
impl Sync for FetchCollectionTokenDetailsParams
impl Unpin for FetchCollectionTokenDetailsParams
impl UnwindSafe for FetchCollectionTokenDetailsParams
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