pub struct CloseRequest {
pub vetoed: bool,
}Expand description
Emitted by window backends on WindowEvent::CloseRequested. Apps that
want to veto the close (e.g. to show a “save before quit?” dialog) set
vetoed = true in a system reading this message; if no system vetoes,
the backend exits the event loop on the next about_to_wait.
Vetoing here mirrors QCloseEvent::ignore() and GTK4’s
close-request -> TRUE.
Fields§
§vetoed: boolSet by an app system to keep the window open.
Trait Implementations§
Source§impl Clone for CloseRequest
impl Clone for CloseRequest
Source§fn clone(&self) -> CloseRequest
fn clone(&self) -> CloseRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CloseRequest
impl Debug for CloseRequest
Source§impl Default for CloseRequest
impl Default for CloseRequest
Source§fn default() -> CloseRequest
fn default() -> CloseRequest
Returns the “default value” for a type. Read more
impl Copy for CloseRequest
impl Message for CloseRequest
Auto Trait Implementations§
impl Freeze for CloseRequest
impl RefUnwindSafe for CloseRequest
impl Send for CloseRequest
impl Sync for CloseRequest
impl Unpin for CloseRequest
impl UnsafeUnpin for CloseRequest
impl UnwindSafe for CloseRequest
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> FromTemplate for T
impl<T> FromTemplate for T
§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Creates Self using default().
§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Converts this type into the system output type.
§impl<T> Template for T
impl<T> Template for T
§fn build_template(
&self,
_context: &mut TemplateContext<'_, '_>,
) -> Result<<T as Template>::Output, BevyError>
fn build_template( &self, _context: &mut TemplateContext<'_, '_>, ) -> Result<<T as Template>::Output, BevyError>
Uses this template and the given
entity context to produce a Template::Output.§fn clone_template(&self) -> T
fn clone_template(&self) -> T
Clones this template. See
Clone.