pub enum CefConversionError {
Unexpected(String),
}Expand description
An error consistently used all code in this module and sub-modules.
May have structured errors, and arbitrary errors
are flagged as Unexpected(s) with the string s
containing the message.
Variants§
Trait Implementations§
Source§impl Debug for CefConversionError
impl Debug for CefConversionError
Source§impl Display for CefConversionError
impl Display for CefConversionError
Source§impl Error for CefConversionError
impl Error for CefConversionError
1.30.0 · 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()
Source§impl PartialEq for CefConversionError
impl PartialEq for CefConversionError
impl StructuralPartialEq for CefConversionError
Auto Trait Implementations§
impl Freeze for CefConversionError
impl RefUnwindSafe for CefConversionError
impl Send for CefConversionError
impl Sync for CefConversionError
impl Unpin for CefConversionError
impl UnwindSafe for CefConversionError
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