pub struct FetchCollectionTokenDetailsParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> FetchCollectionTokenDetailsParamsBuilder<S>
impl<S: State> FetchCollectionTokenDetailsParamsBuilder<S>
Sourcepub fn build(self) -> FetchCollectionTokenDetailsParamswhere
S: IsComplete,
pub fn build(self) -> FetchCollectionTokenDetailsParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn id(
self,
value: String,
) -> FetchCollectionTokenDetailsParamsBuilder<SetId<S>>where
S::Id: IsUnset,
pub fn id(
self,
value: String,
) -> FetchCollectionTokenDetailsParamsBuilder<SetId<S>>where
S::Id: IsUnset,
Required.
The collection link id
Sourcepub fn token_id(
self,
value: String,
) -> FetchCollectionTokenDetailsParamsBuilder<SetTokenId<S>>where
S::TokenId: IsUnset,
pub fn token_id(
self,
value: String,
) -> FetchCollectionTokenDetailsParamsBuilder<SetTokenId<S>>where
S::TokenId: IsUnset,
Required.
The tokenId as it appears on the blockchain
Auto Trait Implementations§
impl<S> Freeze for FetchCollectionTokenDetailsParamsBuilder<S>
impl<S> RefUnwindSafe for FetchCollectionTokenDetailsParamsBuilder<S>
impl<S> Send for FetchCollectionTokenDetailsParamsBuilder<S>
impl<S> Sync for FetchCollectionTokenDetailsParamsBuilder<S>
impl<S> Unpin for FetchCollectionTokenDetailsParamsBuilder<S>
impl<S> UnwindSafe for FetchCollectionTokenDetailsParamsBuilder<S>
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