Struct crayon::graphics::GraphicsFrameInfo [] [src]

pub struct GraphicsFrameInfo {
    pub duration: Duration,
    pub drawcall: u32,
    pub triangles: u32,
    pub alive_surfaces: u32,
    pub alive_shaders: u32,
    pub alive_meshes: u32,
    pub alive_textures: u32,
}

The information of graphics module during last frame.

Fields

Trait Implementations

impl Debug for GraphicsFrameInfo
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for GraphicsFrameInfo
[src]

impl Clone for GraphicsFrameInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for GraphicsFrameInfo
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations