Struct WindowRenderState
pub struct WindowRenderState {
pub canvas: Canvas,
pub logical_size: Size,
pub clear_color: Color,
}
Expand description
Information needed to render a window.
Fields§
§canvas: Canvas
The canvas to render.
logical_size: Size
The size of the window.
clear_color: Color
The clear color of the window.
Auto Trait Implementations§
impl Freeze for WindowRenderState
impl RefUnwindSafe for WindowRenderState
impl Send for WindowRenderState
impl Sync for WindowRenderState
impl Unpin for WindowRenderState
impl UnwindSafe for WindowRenderState
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