pub enum IpconError {
InvalidName,
InvalidKevent,
InvalidLibIpconMsg,
InvalidData,
SysErrorTimeOut,
SysErrorInvalidValue,
SysErrorPermission,
SystemErrorNotExist,
SystemErrorOther,
Unexpected,
}Variants§
InvalidName
InvalidKevent
InvalidLibIpconMsg
InvalidData
SysErrorTimeOut
SysErrorInvalidValue
SysErrorPermission
SystemErrorNotExist
SystemErrorOther
Unexpected
Trait Implementations§
Source§impl Clone for IpconError
impl Clone for IpconError
Source§fn clone(&self) -> IpconError
fn clone(&self) -> IpconError
Returns a duplicate 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 IpconError
impl Debug for IpconError
Source§impl Display for IpconError
impl Display for IpconError
Source§impl Error for IpconError
impl Error for IpconError
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 From<Error> for IpconError
impl From<Error> for IpconError
Source§impl From<IpconError> for Error
impl From<IpconError> for Error
Source§fn from(e: IpconError) -> Self
fn from(e: IpconError) -> Self
Converts to this type from the input type.
Source§impl From<Report<IpconError>> for IpconError
impl From<Report<IpconError>> for IpconError
Source§fn from(report: Report<IpconError>) -> Self
fn from(report: Report<IpconError>) -> Self
Converts to this type from the input type.
impl Copy for IpconError
Auto Trait Implementations§
impl Freeze for IpconError
impl RefUnwindSafe for IpconError
impl Send for IpconError
impl Sync for IpconError
impl Unpin for IpconError
impl UnwindSafe for IpconError
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