pub struct HourlyYieldRecord {
pub effective_amount: String,
pub yield_: String,
pub reward_type: i32,
pub apr_e8: i64,
pub hourly_date: i64,
pub created_time: i64,
}Fields§
§effective_amount: String§yield_: String§reward_type: i32§apr_e8: i64§hourly_date: i64§created_time: i64Trait Implementations§
Source§impl Clone for HourlyYieldRecord
impl Clone for HourlyYieldRecord
Source§fn clone(&self) -> HourlyYieldRecord
fn clone(&self) -> HourlyYieldRecord
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 HourlyYieldRecord
impl Debug for HourlyYieldRecord
Source§impl<'de> Deserialize<'de> for HourlyYieldRecord
impl<'de> Deserialize<'de> for HourlyYieldRecord
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 HourlyYieldRecord
impl RefUnwindSafe for HourlyYieldRecord
impl Send for HourlyYieldRecord
impl Sync for HourlyYieldRecord
impl Unpin for HourlyYieldRecord
impl UnsafeUnpin for HourlyYieldRecord
impl UnwindSafe for HourlyYieldRecord
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