pub struct FunctionStats {
pub running_script: Option<RunningScript>,
pub engines: HashMap<String, EngineStats>,
}
Expand description
Result for the function_stats
command.
Fields§
§running_script: Option<RunningScript>
information about the running script. If there’s no in-flight function, the server replies with None
.
engines: HashMap<String, EngineStats>
Each entry in the map represent a single engine. Engine map contains statistics about the engine like number of functions and number of libraries.
Trait Implementations§
Source§impl Debug for FunctionStats
impl Debug for FunctionStats
Source§impl<'de> Deserialize<'de> for FunctionStats
impl<'de> Deserialize<'de> for FunctionStats
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 FunctionStats
impl RefUnwindSafe for FunctionStats
impl Send for FunctionStats
impl Sync for FunctionStats
impl Unpin for FunctionStats
impl UnwindSafe for FunctionStats
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