pub struct PriceEntry {
pub amount: i32,
pub price: i32,
pub time: String,
}
Fields§
§amount: i32
§price: i32
§time: String
Trait Implementations§
Source§impl Debug for PriceEntry
impl Debug for PriceEntry
Source§impl<'de> Deserialize<'de> for PriceEntry
impl<'de> Deserialize<'de> for PriceEntry
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 PriceEntry
impl RefUnwindSafe for PriceEntry
impl Send for PriceEntry
impl Sync for PriceEntry
impl Unpin for PriceEntry
impl UnwindSafe for PriceEntry
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