pub struct PluginOwnerDisposalError;Expand description
Signals that an owner cleanup completed but could not release its resource.
The scope records the typed failure without retaining an arbitrary external error payload. Boundary adapters remain responsible for their own detailed diagnostics.
Trait Implementations§
Source§impl Clone for PluginOwnerDisposalError
impl Clone for PluginOwnerDisposalError
Source§fn clone(&self) -> PluginOwnerDisposalError
fn clone(&self) -> PluginOwnerDisposalError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PluginOwnerDisposalError
Source§impl Debug for PluginOwnerDisposalError
impl Debug for PluginOwnerDisposalError
Source§impl Display for PluginOwnerDisposalError
impl Display for PluginOwnerDisposalError
impl Eq for PluginOwnerDisposalError
Source§impl Error for PluginOwnerDisposalError
impl Error for PluginOwnerDisposalError
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 PluginOwnerDisposalError
impl PartialEq for PluginOwnerDisposalError
impl StructuralPartialEq for PluginOwnerDisposalError
Auto Trait Implementations§
impl Freeze for PluginOwnerDisposalError
impl RefUnwindSafe for PluginOwnerDisposalError
impl Send for PluginOwnerDisposalError
impl Sync for PluginOwnerDisposalError
impl Unpin for PluginOwnerDisposalError
impl UnsafeUnpin for PluginOwnerDisposalError
impl UnwindSafe for PluginOwnerDisposalError
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