pub struct LendingRate {
pub coin: String,
pub estimate: Decimal,
pub previous: Decimal,
}Fields§
§coin: String§estimate: Decimal§previous: DecimalTrait Implementations§
Source§impl Clone for LendingRate
impl Clone for LendingRate
Source§fn clone(&self) -> LendingRate
fn clone(&self) -> LendingRate
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 LendingRate
impl Debug for LendingRate
Source§impl<'de> Deserialize<'de> for LendingRate
impl<'de> Deserialize<'de> for LendingRate
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 LendingRate
impl RefUnwindSafe for LendingRate
impl Send for LendingRate
impl Sync for LendingRate
impl Unpin for LendingRate
impl UnwindSafe for LendingRate
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