pub enum PlatformError {
NoPlatform,
NoEventLoopProvider,
SetPlatformError(SetPlatformError),
Other(String),
OtherError(Box<dyn Error + Sync + Send, Global>),
}
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
OtherError(Box<dyn Error + Sync + Send, Global>)
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
§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, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any, 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, Global>) -> Rc<dyn Any, Global>
fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>
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.