Struct datamaxi::models::PoolsResponse
source · pub struct PoolsResponse {
pub chain: String,
pub exchange: String,
pub base: String,
pub quote: String,
pub baset_address: String,
pub quote_address: String,
pub pool_address: String,
pub id: Option<String>,
}
Expand description
Response containing details about pools.
Fields§
§chain: String
The blockchain where the pool is located.
exchange: String
The name of the exchange where the pool is available.
base: String
The base asset used in the pool.
quote: String
The quote asset used in the pool.
baset_address: String
The address of the base token in the pool.
quote_address: String
The address of the quote token in the pool.
pool_address: String
The unique address of the pool.
id: Option<String>
An optional unique identifier for the pool.
Trait Implementations§
source§impl Debug for PoolsResponse
impl Debug for PoolsResponse
source§impl<'de> Deserialize<'de> for PoolsResponse
impl<'de> Deserialize<'de> for PoolsResponse
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 PoolsResponse
impl RefUnwindSafe for PoolsResponse
impl Send for PoolsResponse
impl Sync for PoolsResponse
impl Unpin for PoolsResponse
impl UnwindSafe for PoolsResponse
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