Enum slint::CloseRequestResponse
pub enum CloseRequestResponse {
HideWindow,
KeepWindowShown,
}
Expand description
This enum describes whether a Window is allowed to be hidden when the user tries to close the window. It is the return type of the callback provided to Window::on_close_requested.
Variantsยง
HideWindow
The Window will be hidden (default action)
KeepWindowShown
The close request is rejected and the window will be kept shown.
Trait Implementationsยง
ยงimpl Clone for CloseRequestResponse
impl Clone for CloseRequestResponse
ยงfn clone(&self) -> CloseRequestResponse
fn clone(&self) -> CloseRequestResponse
Returns a copy of the value. Read more
1.0.0 ยท sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreยงimpl Debug for CloseRequestResponse
impl Debug for CloseRequestResponse
ยงimpl Default for CloseRequestResponse
impl Default for CloseRequestResponse
ยงfn default() -> CloseRequestResponse
fn default() -> CloseRequestResponse
Returns the โdefault valueโ for a type. Read more
ยงimpl PartialEq<CloseRequestResponse> for CloseRequestResponse
impl PartialEq<CloseRequestResponse> for CloseRequestResponse
ยงfn eq(&self, other: &CloseRequestResponse) -> bool
fn eq(&self, other: &CloseRequestResponse) -> bool
impl Copy for CloseRequestResponse
impl StructuralPartialEq for CloseRequestResponse
Auto Trait Implementationsยง
impl RefUnwindSafe for CloseRequestResponse
impl Send for CloseRequestResponse
impl Sync for CloseRequestResponse
impl Unpin for CloseRequestResponse
impl UnwindSafe for CloseRequestResponse
Blanket Implementationsยง
sourceยงimpl<T> Instrument for T
impl<T> Instrument for T
sourceยงfn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourceยงfn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
ยงimpl<T> IsDefault for Twhere
T: Default + PartialEq<T> + Copy,
impl<T> IsDefault for Twhere
T: Default + PartialEq<T> + Copy,
ยงfn is_default(&self) -> bool
fn is_default(&self) -> bool
Checks that type has a default value.
ยงimpl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere
T: Default,
type NoneType = T
ยงfn null_value() -> T
fn null_value() -> T
The none-equivalent value.
ยงimpl<T> Pointable for T
impl<T> Pointable for T
sourceยงimpl<R, P> ReadPrimitive<R> for Pwhere
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for Pwhere
R: Read + ReadEndian<P>,
P: Default,
sourceยงfn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian()
.