pub struct ResearchRatingSummaryArgs {
pub(crate) symbol: String,
pub(crate) rating_dimension_type: Option<i32>,
pub(crate) uid: Option<String>,
pub(crate) next_key: Option<String>,
pub(crate) num: Option<i32>,
}Fields§
§symbol: String证券 MARKET.CODE,如 US.AAPL / CA.SHOP
rating_dimension_type: Option<i32>评级维度,0/1=机构,2=分析师;0 或不传走 C++ 默认机构维度
uid: Option<String>机构或分析师 uid;不传返回汇总列表,传入返回详情
next_key: Option<String>分页标识,首次不填,续拉填上次返回的 next_key
num: Option<i32>每页返回数量,范围 1~20;不传走 C++ 默认 10
Trait Implementations§
Source§impl Args for ResearchRatingSummaryArgs
impl Args for ResearchRatingSummaryArgs
Source§fn group_id() -> Option<Id>
fn group_id() -> Option<Id>
Report the [
ArgGroup::id][crate::ArgGroup::id] for this set of argumentsSource§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to [
Command] so it can instantiate self via
[FromArgMatches::update_from_arg_matches_mut] Read moreSource§impl FromArgMatches for ResearchRatingSummaryArgs
impl FromArgMatches for ResearchRatingSummaryArgs
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for ResearchRatingSummaryArgs
impl RefUnwindSafe for ResearchRatingSummaryArgs
impl Send for ResearchRatingSummaryArgs
impl Sync for ResearchRatingSummaryArgs
impl Unpin for ResearchRatingSummaryArgs
impl UnsafeUnpin for ResearchRatingSummaryArgs
impl UnwindSafe for ResearchRatingSummaryArgs
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