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