pub struct EguiBackendError;
Expand description
Error to be returned by the backend. Since egui doesn’t return any errors on any painter operations, this is a stub type.
Trait Implementations§
Source§impl Clone for EguiBackendError
impl Clone for EguiBackendError
Source§fn clone(&self) -> EguiBackendError
fn clone(&self) -> EguiBackendError
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 moreSource§impl Debug for EguiBackendError
impl Debug for EguiBackendError
Source§impl Display for EguiBackendError
impl Display for EguiBackendError
Source§impl Error for EguiBackendError
impl Error for EguiBackendError
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()
impl Copy for EguiBackendError
Auto Trait Implementations§
impl Freeze for EguiBackendError
impl RefUnwindSafe for EguiBackendError
impl Send for EguiBackendError
impl Sync for EguiBackendError
impl Unpin for EguiBackendError
impl UnwindSafe for EguiBackendError
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