pub struct BookEntry {
pub price: String,
pub size: String,
pub num_orders: u64,
}Fields§
§price: String§size: String§num_orders: u64Trait Implementations§
Source§impl<'de> Deserialize<'de> for BookEntry
impl<'de> Deserialize<'de> for BookEntry
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 BookEntry
impl RefUnwindSafe for BookEntry
impl Send for BookEntry
impl Sync for BookEntry
impl Unpin for BookEntry
impl UnwindSafe for BookEntry
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