pub struct LtNav<'a> {
pub time: u64,
pub symbol: &'a str,
pub nav: &'a str,
pub basket_position: &'a str,
pub leverage: &'a str,
pub basket_loan: &'a str,
pub circulation: &'a str,
pub basket: &'a str,
}Expand description
The leveraged token nav data.
Fields§
§time: u64The generated timestamp of nav.
symbol: &'a strSymbol name.
Net asset value.
basket_position: &'a strTotal position value = basket value * total circulation.
leverage: &'a strLeverage.
basket_loan: &'a strBasket loan.
circulation: &'a strCirculation.
basket: &'a strBasket.
Trait Implementations§
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§
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