pub struct LendUserPosition {
pub allowance: String,
pub owner_address: String,
pub shares: String,
pub token: LendTokenInfo,
pub underlying_assets: String,
pub underlying_balance: String,
}Fields§
§allowance: String§owner_address: String- Address of user’s wallet
- Balance of user’s jlTokens
token: LendTokenInfo§underlying_assets: String- Balance of user’s USDC in protocol (including intereste accured)
underlying_balance: String- Balance of user’s USDC in wallet
Trait Implementations§
Source§impl Clone for LendUserPosition
impl Clone for LendUserPosition
Source§fn clone(&self) -> LendUserPosition
fn clone(&self) -> LendUserPosition
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 LendUserPosition
impl Debug for LendUserPosition
Source§impl<'de> Deserialize<'de> for LendUserPosition
impl<'de> Deserialize<'de> for LendUserPosition
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 LendUserPosition
impl RefUnwindSafe for LendUserPosition
impl Send for LendUserPosition
impl Sync for LendUserPosition
impl Unpin for LendUserPosition
impl UnsafeUnpin for LendUserPosition
impl UnwindSafe for LendUserPosition
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