pub struct CashLogInput<'a> {Show 13 fields
pub env: &'a str,
pub acc_id: u64,
pub begin_time: Option<u64>,
pub end_time: Option<u64>,
pub biz_group_id: Option<u32>,
pub biz_sub_group_id: Option<u32>,
pub in_out: Option<u32>,
pub keyword: Option<String>,
pub symbol: Option<String>,
pub stock_id: Option<u64>,
pub log_id: Option<String>,
pub max_cnt: Option<u32>,
pub currency: Option<String>,
}Expand description
v1.4.95 U1: MCP tool futu_get_cash_log — 资金明细 (mobile-driven).
比 futu_get_acc_cash_flow 字段更全 (10+ vs 3): 时间范围 / 业务分组 /
货币 / 关键词 / 股票 / 方向 多维过滤 + cursor 分页.
与 REST /api/cash-log 共用 daemon handler,gateway 层统一派生 native
account/market 并补齐移动端默认分页字段。
Fields§
§env: &'a str§acc_id: u64§begin_time: Option<u64>§end_time: Option<u64>§biz_group_id: Option<u32>§biz_sub_group_id: Option<u32>§in_out: Option<u32>§keyword: Option<String>§symbol: Option<String>§stock_id: Option<u64>§log_id: Option<String>§max_cnt: Option<u32>§currency: Option<String>Auto Trait Implementations§
impl<'a> Freeze for CashLogInput<'a>
impl<'a> RefUnwindSafe for CashLogInput<'a>
impl<'a> Send for CashLogInput<'a>
impl<'a> Sync for CashLogInput<'a>
impl<'a> Unpin for CashLogInput<'a>
impl<'a> UnsafeUnpin for CashLogInput<'a>
impl<'a> UnwindSafe for CashLogInput<'a>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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