Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.
pub enum AcgError {
InvalidIntent(String),
Serialization(Error),
Internal(String),
PluginAlreadyRegistered(String),
PluginNotFound(String),
TranslationFailed(String),
IrConstructionError(String),
}
The error type for all Adaptive Cache Governor (ACG) operations.
InvalidIntent(String)InvalidIntent(String)
An intent validation failed.
Serialization(Error)Serialization(Error)
A serialization or deserialization error.
Internal(String)Internal(String)
An internal error.
PluginAlreadyRegistered(String)PluginAlreadyRegistered(String)
A plugin with this ID is already registered.
PluginNotFound(String)PluginNotFound(String)
No plugin found with the given ID.
TranslationFailed(String)TranslationFailed(String)
Plugin translation failed.
IrConstructionError(String)IrConstructionError(String)
IR construction failed due to invalid input.
impl Debug for AcgErrorimpl Debug for AcgError
fmtfn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Display for AcgErrorimpl Display for AcgError
fmtfn fmt(&self, __formatter: &mut Formatter<'_>) -> Result
impl Error for AcgErrorimpl Error for AcgError
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 AcgErrorimpl From<Error> for AcgError
fromfn from(source: Error) -> Self