pub struct ServerIndexingStats {
pub server_name: String,
pub file_count: u32,
pub total_time_ms: u64,
pub functions: Vec<FunctionStats>,
pub cache: CacheStats,
}Fields§
§server_name: String§file_count: u32§total_time_ms: u64§functions: Vec<FunctionStats>§cache: CacheStatsTrait Implementations§
Source§impl Clone for ServerIndexingStats
impl Clone for ServerIndexingStats
Source§fn clone(&self) -> ServerIndexingStats
fn clone(&self) -> ServerIndexingStats
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 ServerIndexingStats
impl Debug for ServerIndexingStats
Source§impl Default for ServerIndexingStats
impl Default for ServerIndexingStats
Source§fn default() -> ServerIndexingStats
fn default() -> ServerIndexingStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServerIndexingStats
impl<'de> Deserialize<'de> for ServerIndexingStats
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
Auto Trait Implementations§
impl Freeze for ServerIndexingStats
impl RefUnwindSafe for ServerIndexingStats
impl Send for ServerIndexingStats
impl Sync for ServerIndexingStats
impl Unpin for ServerIndexingStats
impl UnsafeUnpin for ServerIndexingStats
impl UnwindSafe for ServerIndexingStats
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