pub struct AssetDetails {
pub asset_full_name: String,
pub asset_name: String,
pub is_borrowable: bool,
pub is_mortgageable: bool,
pub user_min_borrow: f64,
pub user_min_repay: f64,
}Fields§
§asset_full_name: String§asset_name: String§is_borrowable: bool§is_mortgageable: bool§user_min_borrow: f64§user_min_repay: f64Trait Implementations§
Source§impl Clone for AssetDetails
impl Clone for AssetDetails
Source§fn clone(&self) -> AssetDetails
fn clone(&self) -> AssetDetails
Returns a duplicate of the value. Read more
1.0.0 · 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 AssetDetails
impl Debug for AssetDetails
Source§impl<'de> Deserialize<'de> for AssetDetails
impl<'de> Deserialize<'de> for AssetDetails
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 AssetDetails
impl RefUnwindSafe for AssetDetails
impl Send for AssetDetails
impl Sync for AssetDetails
impl Unpin for AssetDetails
impl UnwindSafe for AssetDetails
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