pub struct CmsPluginError(/* private fields */);Expand description
Error produced by a PluggableCms when a plugin recognized a
conversion pair but failed to build a transform.
Type-erased wrapper over any core::error::Error + Send + Sync. Use
CmsPluginError::new or From to construct.
Implementations§
Source§impl CmsPluginError
impl CmsPluginError
Trait Implementations§
Source§impl Debug for CmsPluginError
impl Debug for CmsPluginError
Source§impl Display for CmsPluginError
impl Display for CmsPluginError
Source§impl Error for CmsPluginError
impl Error for CmsPluginError
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()
Auto Trait Implementations§
impl Freeze for CmsPluginError
impl !RefUnwindSafe for CmsPluginError
impl Send for CmsPluginError
impl Sync for CmsPluginError
impl Unpin for CmsPluginError
impl UnsafeUnpin for CmsPluginError
impl !UnwindSafe for CmsPluginError
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