pub struct NftDetail {
pub id: usize,
pub type_name: String,
pub wallet_address: String,
pub mint_address: String,
pub price: String,
pub seller_address: String,
pub to_wallet_address: Option<String>,
pub signature: String,
pub status: String,
pub updated_at: String,
pub created_at: String,
}
Fields§
§id: usize
§type_name: String
§wallet_address: String
§mint_address: String
§price: String
§seller_address: String
§to_wallet_address: Option<String>
§signature: String
§status: String
§updated_at: String
§created_at: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for NftDetail
impl<'de> Deserialize<'de> for NftDetail
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 NftDetail
impl RefUnwindSafe for NftDetail
impl Send for NftDetail
impl Sync for NftDetail
impl Unpin for NftDetail
impl UnwindSafe for NftDetail
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