pub struct WinitWindowBuilder { /* private fields */ }
Expand description
A builder for creating WinitWindow
instances.
This follows the builder pattern to provide an ergonomic API for window creation.
Implementations§
Source§impl WinitWindowBuilder
impl WinitWindowBuilder
Sourcepub fn with_title(self, title: impl Into<String>) -> Self
pub fn with_title(self, title: impl Into<String>) -> Self
Sets the title of the window to be built.
Sourcepub fn with_dimensions(self, width: u32, height: u32) -> Self
pub fn with_dimensions(self, width: u32, height: u32) -> Self
Sets the initial inner dimensions of the window to be built.
Sourcepub fn build(self, event_loop: &ActiveEventLoop) -> Result<WinitWindow, OsError>
pub fn build(self, event_loop: &ActiveEventLoop) -> Result<WinitWindow, OsError>
Builds the WinitWindow
using the provided winit
event loop.
§Errors
Returns an OsError
if the underlying winit
window creation fails.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WinitWindowBuilder
impl RefUnwindSafe for WinitWindowBuilder
impl Send for WinitWindowBuilder
impl Sync for WinitWindowBuilder
impl Unpin for WinitWindowBuilder
impl UnwindSafe for WinitWindowBuilder
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.