pub enum RdesktopError {
WindowCreation(String),
RendererInit(String),
Ipc(String),
Config(String),
Bundler(String),
Cef(String),
WebView(String),
UnsupportedPlatform(String),
GlobalInput(String),
Other(Error),
}Variants§
WindowCreation(String)
RendererInit(String)
Ipc(String)
Config(String)
Bundler(String)
Cef(String)
WebView(String)
UnsupportedPlatform(String)
GlobalInput(String)
Other(Error)
Trait Implementations§
Source§impl Debug for RdesktopError
impl Debug for RdesktopError
Source§impl Display for RdesktopError
impl Display for RdesktopError
Source§impl Error for RdesktopError
impl Error for RdesktopError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
Auto Trait Implementations§
impl Freeze for RdesktopError
impl RefUnwindSafe for RdesktopError
impl Send for RdesktopError
impl Sync for RdesktopError
impl Unpin for RdesktopError
impl UnsafeUnpin for RdesktopError
impl UnwindSafe for RdesktopError
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