pub struct ScannerSubscription {Show 21 fields
pub number_of_rows: i32,
pub instrument: String,
pub location_code: String,
pub scan_code: String,
pub above_price: f64,
pub below_price: f64,
pub above_volume: i32,
pub market_cap_above: f64,
pub market_cap_below: f64,
pub moody_rating_above: String,
pub moody_rating_below: String,
pub sp_rating_above: String,
pub sp_rating_below: String,
pub maturity_date_above: String,
pub maturity_date_below: String,
pub coupon_rate_above: f64,
pub coupon_rate_below: f64,
pub exclude_convertible: bool,
pub average_option_volume_above: i32,
pub scanner_setting_pairs: String,
pub stock_type_filter: String,
}Expand description
Scanner subscription.
Fields§
§number_of_rows: i32Number of rows.
instrument: StringInstrument.
location_code: StringLocation code.
scan_code: StringScan code.
above_price: f64Above price.
below_price: f64Below price.
above_volume: i32Above volume.
market_cap_above: f64Market cap above.
market_cap_below: f64Market cap below.
moody_rating_above: StringMoody rating above.
moody_rating_below: StringMoody rating below.
sp_rating_above: StringSP rating above.
sp_rating_below: StringSP rating below.
maturity_date_above: StringMaturity date above.
maturity_date_below: StringMaturity date below.
coupon_rate_above: f64Coupon rate above.
coupon_rate_below: f64Coupon rate below.
exclude_convertible: boolExclude convertible.
average_option_volume_above: i32Average option volume above.
scanner_setting_pairs: StringScanner setting pairs.
stock_type_filter: StringStock type filter.
Trait Implementations§
Source§impl Clone for ScannerSubscription
impl Clone for ScannerSubscription
Source§fn clone(&self) -> ScannerSubscription
fn clone(&self) -> ScannerSubscription
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 ScannerSubscription
impl Debug for ScannerSubscription
Source§impl Default for ScannerSubscription
impl Default for ScannerSubscription
Source§fn default() -> ScannerSubscription
fn default() -> ScannerSubscription
Returns the “default value” for a type. Read more
Source§impl PartialEq for ScannerSubscription
impl PartialEq for ScannerSubscription
impl StructuralPartialEq for ScannerSubscription
Auto Trait Implementations§
impl Freeze for ScannerSubscription
impl RefUnwindSafe for ScannerSubscription
impl Send for ScannerSubscription
impl Sync for ScannerSubscription
impl Unpin for ScannerSubscription
impl UnsafeUnpin for ScannerSubscription
impl UnwindSafe for ScannerSubscription
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