pub struct Builder { /* private fields */ }Implementations§
Source§impl Builder
impl Builder
pub fn new() -> Self
pub fn event_polling_rate(self, rate: Duration) -> Self
pub fn screen<S: Screen + 'static>(self, screen: S) -> Self
pub fn tick_rate(self, rate: Duration) -> Self
pub fn frames_per_second(self, fps: u8) -> Self
pub fn on_startup(self, callback: fn() -> Command) -> Self
pub fn on_shutdown(self, callback: fn() -> Command) -> Self
pub fn build<W, B>(self, sink: W, backend: B) -> Result<Application<B>, Error>
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Builder
impl !Send for Builder
impl !Sync for Builder
impl !UnwindSafe for Builder
impl Freeze for Builder
impl Unpin for Builder
impl UnsafeUnpin for Builder
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more