pub struct MarketSide {
pub id: String,
pub identifier: String,
pub description: String,
pub price: String,
pub long: bool,
pub market_side_type: String,
pub team: Option<Value>,
pub player: Option<Value>,
pub extra: HashMap<String, Value>,
}Fields§
§id: String§identifier: String§description: String§price: String§long: bool§market_side_type: String§team: Option<Value>§player: Option<Value>§extra: HashMap<String, Value>Trait Implementations§
Source§impl Clone for MarketSide
impl Clone for MarketSide
Source§fn clone(&self) -> MarketSide
fn clone(&self) -> MarketSide
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 MarketSide
impl Debug for MarketSide
Source§impl<'de> Deserialize<'de> for MarketSide
impl<'de> Deserialize<'de> for MarketSide
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 MarketSide
impl RefUnwindSafe for MarketSide
impl Send for MarketSide
impl Sync for MarketSide
impl Unpin for MarketSide
impl UnsafeUnpin for MarketSide
impl UnwindSafe for MarketSide
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