Enum slint::PlatformError
#[non_exhaustive]
pub enum PlatformError {
NoPlatform,
NoEventLoopProvider,
SetPlatformError(SetPlatformError),
Other(String),
}
Expand description
The platform encountered a fatal error.
This error typically indicates an issue with initialization or connecting to the windowing system.
This can be constructed from a String
:
use slint::platform::PlatformError;
PlatformError::from(format!("Could not load resource {}", 1234));
Variants (Non-exhaustive)ยง
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
NoPlatform
No default platform was selected, or no platform could be initialized.
If you encounter this error, make sure to either selected trough the backend-*
cargo features flags,
or call platform::set_platform()
before running the event loop
NoEventLoopProvider
The Slint Platform does not provide an event loop.
The Platform::run_event_loop
is not implemented for the current platform.
SetPlatformError(SetPlatformError)
There is already a platform set from another thread.
Other(String)
Another platform-specific error occurred
Trait Implementationsยง
ยงimpl Debug for PlatformError
impl Debug for PlatformError
ยงimpl Display for PlatformError
impl Display for PlatformError
ยงimpl Error for PlatformError
impl Error for PlatformError
1.30.0 ยท sourceยงfn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 ยท sourceยงfn description(&self) -> &str
fn description(&self) -> &str
๐Deprecated since 1.42.0: use the Display impl or to_string()
ยงimpl From<&str> for PlatformError
impl From<&str> for PlatformError
ยงfn from(value: &str) -> PlatformError
fn from(value: &str) -> PlatformError
Converts to this type from the input type.
ยงimpl From<String> for PlatformError
impl From<String> for PlatformError
ยงfn from(value: String) -> PlatformError
fn from(value: String) -> PlatformError
Converts to this type from the input type.
Auto Trait Implementationsยง
impl RefUnwindSafe for PlatformError
impl Send for PlatformError
impl Sync for PlatformError
impl Unpin for PlatformError
impl UnwindSafe for PlatformError
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, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
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 + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
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.