pub struct LendAssetInfo {
pub address: String,
pub chain_id: String,
pub coingecko_id: String,
pub decimals: i64,
pub logo_url: Url,
pub name: String,
pub price: String,
pub symbol: String,
}Fields§
§address: String- Lending token underlying asset address like
EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
chain_id: String- Lending token underlying asset chain id like
solana
coingecko_id: String§decimals: i64§logo_url: Url§name: String§price: String§symbol: StringTrait Implementations§
Source§impl Clone for LendAssetInfo
impl Clone for LendAssetInfo
Source§fn clone(&self) -> LendAssetInfo
fn clone(&self) -> LendAssetInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LendAssetInfo
impl Debug for LendAssetInfo
Source§impl<'de> Deserialize<'de> for LendAssetInfo
impl<'de> Deserialize<'de> for LendAssetInfo
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 LendAssetInfo
impl RefUnwindSafe for LendAssetInfo
impl Send for LendAssetInfo
impl Sync for LendAssetInfo
impl Unpin for LendAssetInfo
impl UnsafeUnpin for LendAssetInfo
impl UnwindSafe for LendAssetInfo
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