Struct lime_render::ScreenDimensions [] [src]

pub struct ScreenDimensions {
    pub w: u32,
    pub h: u32,
}

Resource holding the current size of the screen.

Fields

Trait Implementations

impl Copy for ScreenDimensions
[src]

impl Clone for ScreenDimensions
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ScreenDimensions
[src]

[src]

Formats the value using the given formatter. Read more

impl Into<[u32; 2]> for ScreenDimensions
[src]

[src]

Performs the conversion.

impl From<[u32; 2]> for ScreenDimensions
[src]

[src]

Performs the conversion.

Auto Trait Implementations