pub struct SolanaNFTTransfersEntity {
pub id: Option<u32>,
pub mint_address: Option<String>,
pub tx_signature: Option<String>,
pub from_wallet_address: Option<String>,
pub to_wallet_address: Option<String>,
pub amount: Option<u32>,
pub block_time: Option<String>,
pub slot: Option<u32>,
}
Fields§
§id: Option<u32>
§mint_address: Option<String>
§tx_signature: Option<String>
§from_wallet_address: Option<String>
§to_wallet_address: Option<String>
§amount: Option<u32>
§block_time: Option<String>
§slot: Option<u32>
Trait Implementations§
Source§impl Debug for SolanaNFTTransfersEntity
impl Debug for SolanaNFTTransfersEntity
Source§impl<'de> Deserialize<'de> for SolanaNFTTransfersEntity
impl<'de> Deserialize<'de> for SolanaNFTTransfersEntity
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 SolanaNFTTransfersEntity
impl RefUnwindSafe for SolanaNFTTransfersEntity
impl Send for SolanaNFTTransfersEntity
impl Sync for SolanaNFTTransfersEntity
impl Unpin for SolanaNFTTransfersEntity
impl UnwindSafe for SolanaNFTTransfersEntity
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