pub struct SearchAssetsParams {Show 19 fields
pub pagination: Pagination,
pub display_options: Option<DisplayOptions>,
pub sort_by: Option<AssetSortingRequest>,
pub creator_address: Option<String>,
pub owner_address: Option<String>,
pub json_uri: Option<String>,
pub grouping: Option<Vec<String>>,
pub burnt: Option<bool>,
pub frozen: Option<bool>,
pub supply_mint: Option<String>,
pub supply: Option<u32>,
pub interface: Option<Interface>,
pub delegate: Option<u32>,
pub owner_type: Option<OwnershipModel>,
pub royalty_amount: Option<u32>,
pub royalty_target: Option<String>,
pub royalty_target_type: Option<RoyaltyModel>,
pub compressible: Option<bool>,
pub compressed: Option<bool>,
}
Fields§
§pagination: Pagination
§display_options: Option<DisplayOptions>
§sort_by: Option<AssetSortingRequest>
§creator_address: Option<String>
§owner_address: Option<String>
§json_uri: Option<String>
§grouping: Option<Vec<String>>
§burnt: Option<bool>
§frozen: Option<bool>
§supply_mint: Option<String>
§supply: Option<u32>
§interface: Option<Interface>
§delegate: Option<u32>
§owner_type: Option<OwnershipModel>
§royalty_amount: Option<u32>
§royalty_target: Option<String>
§royalty_target_type: Option<RoyaltyModel>
§compressible: Option<bool>
§compressed: Option<bool>
Trait Implementations§
Source§impl Clone for SearchAssetsParams
impl Clone for SearchAssetsParams
Source§fn clone(&self) -> SearchAssetsParams
fn clone(&self) -> SearchAssetsParams
Returns a duplicate 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 moreSource§impl Debug for SearchAssetsParams
impl Debug for SearchAssetsParams
Source§impl<'de> Deserialize<'de> for SearchAssetsParams
impl<'de> Deserialize<'de> for SearchAssetsParams
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 SearchAssetsParams
impl PartialEq for SearchAssetsParams
Source§impl Serialize for SearchAssetsParams
impl Serialize for SearchAssetsParams
impl StructuralPartialEq for SearchAssetsParams
Auto Trait Implementations§
impl Freeze for SearchAssetsParams
impl RefUnwindSafe for SearchAssetsParams
impl Send for SearchAssetsParams
impl Sync for SearchAssetsParams
impl Unpin for SearchAssetsParams
impl UnwindSafe for SearchAssetsParams
Blanket Implementations§
Source§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, _digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
Source§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more