pub struct ScannerDataRow {
pub rank: i32,
pub contract: Box<Contract>,
pub market_name: String,
pub distance: String,
pub benchmark: String,
pub projection: String,
pub combo_key: String,
}Expand description
Scanner row data.
Fields§
§rank: i32Rank.
contract: Box<Contract>Contract.
market_name: StringMarket name.
distance: StringDistance.
benchmark: StringBenchmark.
projection: StringProjection.
combo_key: StringCombo key.
Trait Implementations§
Source§impl Clone for ScannerDataRow
impl Clone for ScannerDataRow
Source§fn clone(&self) -> ScannerDataRow
fn clone(&self) -> ScannerDataRow
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 ScannerDataRow
impl Debug for ScannerDataRow
Source§impl PartialEq for ScannerDataRow
impl PartialEq for ScannerDataRow
impl StructuralPartialEq for ScannerDataRow
Auto Trait Implementations§
impl Freeze for ScannerDataRow
impl RefUnwindSafe for ScannerDataRow
impl Send for ScannerDataRow
impl Sync for ScannerDataRow
impl Unpin for ScannerDataRow
impl UnsafeUnpin for ScannerDataRow
impl UnwindSafe for ScannerDataRow
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