pub struct SolanaNFTListing {
pub id: Option<u32>,
pub trade_state: Option<String>,
pub seller: Option<String>,
pub metadata: Option<String>,
pub purchase_id: Option<String>,
pub price: Option<u32>,
pub token_size: Option<u32>,
pub created_at: Option<String>,
pub canceled_at: Option<String>,
}Fields
id: Option<u32>trade_state: Option<String>seller: Option<String>metadata: Option<String>purchase_id: Option<String>price: Option<u32>token_size: Option<u32>created_at: Option<String>canceled_at: Option<String>Trait Implementations
sourceimpl Debug for SolanaNFTListing
impl Debug for SolanaNFTListing
sourceimpl<'de> Deserialize<'de> for SolanaNFTListing
impl<'de> Deserialize<'de> for SolanaNFTListing
sourcefn 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
sourceimpl Serialize for SolanaNFTListing
impl Serialize for SolanaNFTListing
Auto Trait Implementations
impl RefUnwindSafe for SolanaNFTListing
impl Send for SolanaNFTListing
impl Sync for SolanaNFTListing
impl Unpin for SolanaNFTListing
impl UnwindSafe for SolanaNFTListing
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more