pub struct ProfilerReport {
pub name: String,
pub time: f64,
pub percent: f64,
pub sub_reports: Vec<ProfilerReport>,
}
Fields§
§name: String
§time: f64
§percent: f64
§sub_reports: Vec<ProfilerReport>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProfilerReport
impl RefUnwindSafe for ProfilerReport
impl Send for ProfilerReport
impl Sync for ProfilerReport
impl Unpin for ProfilerReport
impl UnwindSafe for ProfilerReport
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