pub struct GetNftAssetParams {
pub limit: Option<i64>,
pub page: Option<i64>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [get_nft_asset] operation.
This struct holds all of the inputs you can pass when calling
get_nft_asset.
Fields§
§limit: Option<i64>Default 50, Max 50
This field is **optional.
page: Option<i64>Default 1
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl GetNftAssetParams
impl GetNftAssetParams
Sourcepub fn builder() -> GetNftAssetParamsBuilder
pub fn builder() -> GetNftAssetParamsBuilder
Create a builder for [get_nft_asset].
Trait Implementations§
Source§impl Clone for GetNftAssetParams
impl Clone for GetNftAssetParams
Source§fn clone(&self) -> GetNftAssetParams
fn clone(&self) -> GetNftAssetParams
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 GetNftAssetParams
impl Debug for GetNftAssetParams
Source§impl Default for GetNftAssetParams
impl Default for GetNftAssetParams
Source§fn default() -> GetNftAssetParams
fn default() -> GetNftAssetParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetNftAssetParams
impl RefUnwindSafe for GetNftAssetParams
impl Send for GetNftAssetParams
impl Sync for GetNftAssetParams
impl Unpin for GetNftAssetParams
impl UnsafeUnpin for GetNftAssetParams
impl UnwindSafe for GetNftAssetParams
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