pub enum PluginRefError {
InvalidFormat,
InvalidName(String),
EmptyVersion,
}Variants§
Trait Implementations§
Source§impl Debug for PluginRefError
impl Debug for PluginRefError
Source§impl Display for PluginRefError
impl Display for PluginRefError
Source§impl Error for PluginRefError
impl Error for PluginRefError
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 PluginRefError
impl PartialEq for PluginRefError
impl Eq for PluginRefError
impl StructuralPartialEq for PluginRefError
Auto Trait Implementations§
impl Freeze for PluginRefError
impl RefUnwindSafe for PluginRefError
impl Send for PluginRefError
impl Sync for PluginRefError
impl Unpin for PluginRefError
impl UnsafeUnpin for PluginRefError
impl UnwindSafe for PluginRefError
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
Source§impl<T> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
Source§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
Query the “status” flags for the
self file descriptor.Source§fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
Source§fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
Set the “status” flags for the
self file descriptor. Read more