pub struct AuraView {Show 13 fields
pub aura_id: u32,
pub target_id: u32,
pub source: String,
pub source_id: u32,
pub affected: String,
pub affected_id: u32,
pub pull_id: Option<u32>,
pub group_id: Option<u32>,
pub uptime_ms: u64,
pub applications: u64,
pub refreshes: u64,
pub stack_seconds: f64,
pub uptime_pct: Option<f64>,
}Expand description
Per-aura uptime stats with application and refresh counts.
Fields§
§aura_id: u32§target_id: u32§source: String§source_id: u32§affected: String§affected_id: u32§pull_id: Option<u32>§group_id: Option<u32>§uptime_ms: u64§applications: u64§refreshes: u64§stack_seconds: f64§uptime_pct: Option<f64>Trait Implementations§
Source§impl Tsify for AuraView
impl Tsify for AuraView
const DECL: &'static str = "/**\n * Per-aura uptime stats with application and refresh counts.\n */\nexport interface AuraView {\n aura_id: number;\n target_id: number;\n source: string;\n source_id: number;\n affected: string;\n affected_id: number;\n pull_id: number | undefined;\n group_id: number | undefined;\n uptime_ms: number;\n applications: number;\n refreshes: number;\n stack_seconds: number;\n uptime_pct: number | undefined;\n}"
const SERIALIZATION_CONFIG: SerializationConfig
type JsType = JsType
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
Auto Trait Implementations§
impl Freeze for AuraView
impl RefUnwindSafe for AuraView
impl Send for AuraView
impl Sync for AuraView
impl Unpin for AuraView
impl UnsafeUnpin for AuraView
impl UnwindSafe for AuraView
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