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,
}Fields§
§number_of_rows: i32§instrument: String§location_code: String§scan_code: String§above_price: f64§below_price: f64§above_volume: i32§market_cap_above: f64§market_cap_below: f64§moody_rating_above: String§moody_rating_below: String§sp_rating_above: String§sp_rating_below: String§maturity_date_above: String§maturity_date_below: String§coupon_rate_above: f64§coupon_rate_below: f64§exclude_convertible: bool§average_option_volume_above: i32§scanner_setting_pairs: String§stock_type_filter: StringImplementations§
Source§impl ScannerSubscription
impl ScannerSubscription
pub fn new( number_of_rows: i32, instrument: String, location_code: String, scan_code: String, above_price: f64, below_price: f64, above_volume: i32, market_cap_above: f64, market_cap_below: f64, moody_rating_above: String, moody_rating_below: String, sp_rating_above: String, sp_rating_below: String, maturity_date_above: String, maturity_date_below: String, coupon_rate_above: f64, coupon_rate_below: f64, exclude_convertible: bool, average_option_volume_above: i32, scanner_setting_pairs: String, stock_type_filter: String, ) -> Self
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<'de> Deserialize<'de> for ScannerSubscription
impl<'de> Deserialize<'de> for ScannerSubscription
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
Source§impl Display for ScannerSubscription
impl Display 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