pub struct CacheStats {
pub trade_unlocked: bool,
pub cached_cipher_count: usize,
pub cached_account_count: usize,
pub static_data: StaticCacheStats,
}Fields§
§trade_unlocked: boolcached_cipher_count > 0 的简写
cached_cipher_count: usize已解锁的账户数(每个 acc_id 一份 cipher)
cached_account_count: usizeCMD 2282 拉到的 active real + sim 账户总数
static_data: StaticCacheStatsStatic stock-list readiness and cache size diagnostics.
Trait Implementations§
Source§impl Clone for CacheStats
impl Clone for CacheStats
Source§fn clone(&self) -> CacheStats
fn clone(&self) -> CacheStats
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 moreSource§impl Debug for CacheStats
impl Debug for CacheStats
Auto Trait Implementations§
impl Freeze for CacheStats
impl RefUnwindSafe for CacheStats
impl Send for CacheStats
impl Sync for CacheStats
impl Unpin for CacheStats
impl UnsafeUnpin for CacheStats
impl UnwindSafe for CacheStats
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