pub struct NftSellOffersResponse {
pub nft_id: String,
pub offers: Vec<NFTokenOffer>,
pub limit: Option<u32>,
pub marker: Option<String>,
}
Fields§
§nft_id: String
The NFToken these offers are for, as specified in the request.
offers: Vec<NFTokenOffer>
A list of buy offers for the token. Each of these is formatted as a Buy Offer (see below).
limit: Option<u32>
The limit, as specified in the request.
marker: Option<String>
Server-defined value indicating the response is paginated. Pass this to the next call to resume where this call left off. Omitted when there are no pages of information after this one.
Trait Implementations§
Source§impl Debug for NftSellOffersResponse
impl Debug for NftSellOffersResponse
Source§impl<'de> Deserialize<'de> for NftSellOffersResponse
impl<'de> Deserialize<'de> for NftSellOffersResponse
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
Auto Trait Implementations§
impl Freeze for NftSellOffersResponse
impl RefUnwindSafe for NftSellOffersResponse
impl Send for NftSellOffersResponse
impl Sync for NftSellOffersResponse
impl Unpin for NftSellOffersResponse
impl UnwindSafe for NftSellOffersResponse
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