Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.
pub enum PluginError {
InvalidConfig(String),
NotFound(String),
Serialization(Error),
Internal(String),
RegistrationFailed(String),
}
Error type for generic plugin operations.
InvalidConfig(String)InvalidConfig(String)
Configuration validation failed.
NotFound(String)NotFound(String)
The requested plugin resource was not found.
Serialization(Error)Serialization(Error)
A serialization or deserialization operation failed.
Internal(String)Internal(String)
An internal plugin-system error occurred.
RegistrationFailed(String)RegistrationFailed(String)
A runtime middleware/subscriber registration failed.
impl Debug for PluginErrorimpl Debug for PluginError
fmtfn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Display for PluginErrorimpl Display for PluginError
fmtfn fmt(&self, __formatter: &mut Formatter<'_>) -> Result
impl Error for PluginErrorimpl Error for PluginError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
descriptionfn description(&self) -> &str
causefn cause(&self) -> Option<&dyn Error>
providefn provide<'a>(&'a self, request: &mut Request<'a>)
impl From< Error> for PluginErrorimpl From<Error> for PluginError
fromfn from(source: Error) -> Self