pub enum NCurseswMouseError {
LibraryError {
func: String,
rc: Option<i32>,
},
IntError {
source: TryFromIntError,
},
}Expand description
NCursesw mouse errors.
Variants§
Trait Implementations§
Source§impl Debug for NCurseswMouseError
impl Debug for NCurseswMouseError
Source§impl Display for NCurseswMouseError
impl Display for NCurseswMouseError
Source§impl Error for NCurseswMouseError
impl Error for NCurseswMouseError
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 From<NCurseswMouseError> for NCurseswError
impl From<NCurseswMouseError> for NCurseswError
Source§fn from(source: NCurseswMouseError) -> NCurseswError
fn from(source: NCurseswMouseError) -> NCurseswError
Converts to this type from the input type.
Source§impl From<NCurseswMouseError> for NCurseswWinError
impl From<NCurseswMouseError> for NCurseswWinError
Source§fn from(source: NCurseswMouseError) -> Self
fn from(source: NCurseswMouseError) -> Self
Converts to this type from the input type.
Source§impl From<TryFromIntError> for NCurseswMouseError
impl From<TryFromIntError> for NCurseswMouseError
Source§fn from(source: TryFromIntError) -> NCurseswMouseError
fn from(source: TryFromIntError) -> NCurseswMouseError
Converts to this type from the input type.
Source§impl PartialEq for NCurseswMouseError
impl PartialEq for NCurseswMouseError
impl Eq for NCurseswMouseError
impl StructuralPartialEq for NCurseswMouseError
Auto Trait Implementations§
impl Freeze for NCurseswMouseError
impl RefUnwindSafe for NCurseswMouseError
impl Send for NCurseswMouseError
impl Sync for NCurseswMouseError
impl Unpin for NCurseswMouseError
impl UnwindSafe for NCurseswMouseError
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