pub struct EngineMetrics {
pub cache_size: usize,
pub memory_usage: usize,
pub plugins_loaded: usize,
pub js_bridge_available: bool,
}Expand description
Engine metrics
Fields§
§cache_size: usize§memory_usage: usize§plugins_loaded: usize§js_bridge_available: boolTrait Implementations§
Source§impl Clone for EngineMetrics
impl Clone for EngineMetrics
Source§fn clone(&self) -> EngineMetrics
fn clone(&self) -> EngineMetrics
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 moreAuto Trait Implementations§
impl Freeze for EngineMetrics
impl RefUnwindSafe for EngineMetrics
impl Send for EngineMetrics
impl Sync for EngineMetrics
impl Unpin for EngineMetrics
impl UnwindSafe for EngineMetrics
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