#[repr(C)]
pub struct ViewStats { pub name: [i8; 256], pub view: ViewId, pub cpu_time_begin: i64, pub cpu_time_end: i64, pub gpu_time_begin: i64, pub gpu_time_end: i64, }
Expand description

View stats.

Fields

name: [i8; 256]

View name.

view: ViewId

View id.

cpu_time_begin: i64

CPU (submit) begin time.

cpu_time_end: i64

CPU (submit) end time.

gpu_time_begin: i64

GPU begin time.

gpu_time_end: i64

GPU end time.

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.