pub enum FinanceData {
Report {
columns: Vec<f64>,
},
Capital {
total_share: f64,
flow_share: f64,
restricted: f64,
free_float_share: f64,
},
HolderCount {
total_holders: i64,
a_holders: i64,
b_holders: i64,
h_holders: i64,
float_holders: i64,
other_holders: i64,
},
TopHolder {
holders: Vec<Shareholder>,
},
Ratios {
ratios: Vec<f64>,
},
}Expand description
不同类型的财务数据载荷。
Variants§
Report
7001、7002、7003 财务报表数值列。
Capital
7004 股本结构。
HolderCount
7005 股东人数。
Fields
TopHolder
7006、7007 十大股东或十大流通股东。
Fields
§
holders: Vec<Shareholder>记录中的股东列表。
Ratios
7008 财务比率数值列。
Trait Implementations§
Source§impl Clone for FinanceData
impl Clone for FinanceData
Source§fn clone(&self) -> FinanceData
fn clone(&self) -> FinanceData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FinanceData
impl RefUnwindSafe for FinanceData
impl Send for FinanceData
impl Sync for FinanceData
impl Unpin for FinanceData
impl UnsafeUnpin for FinanceData
impl UnwindSafe for FinanceData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more