pub struct AppInfo {
pub name: String,
pub window: bool,
pub num_buffers: u32,
pub dpi_aware: bool,
}Expand description
Information to describe the Application properties
Fields§
§name: StringName of the application
window: boolSet to true to create a default window
num_buffers: u32Specify the number of buffers in the swap chain
dpi_aware: boolSignify if this app wants to be dpi aware
Auto Trait Implementations§
impl Freeze for AppInfo
impl RefUnwindSafe for AppInfo
impl Send for AppInfo
impl Sync for AppInfo
impl Unpin for AppInfo
impl UnsafeUnpin for AppInfo
impl UnwindSafe for AppInfo
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