usesuper::counts::non_negative_count_from_i32;usecrate::sys;implcrate::ui::Ui{/// Get global imgui time. Incremented by io.DeltaTime every frame.
#[doc(alias ="GetTime")]pubfntime(&self)->f64{unsafe{sys::igGetTime()}}/// Get global imgui frame count. Incremented by 1 every frame.
#[doc(alias ="GetFrameCount")]pubfnframe_count(&self)->usize{non_negative_count_from_i32("Ui::frame_count()",unsafe{sys::igGetFrameCount()})}/// Returns the width of an item based on the current layout state.
#[doc(alias ="CalcItemWidth")]pubfncalc_item_width(&self)->f32{unsafe{sys::igCalcItemWidth()}}}