pub enum MetadataRegistryError {
LockPoisoned,
}Expand description
Error returned when the process-global AD metadata registry is unavailable.
Variants§
LockPoisoned
A previous panic poisoned the global metadata mutex.
Trait Implementations§
Source§impl Clone for MetadataRegistryError
impl Clone for MetadataRegistryError
Source§fn clone(&self) -> MetadataRegistryError
fn clone(&self) -> MetadataRegistryError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MetadataRegistryError
impl Debug for MetadataRegistryError
Source§impl Display for MetadataRegistryError
impl Display for MetadataRegistryError
Source§impl Error for MetadataRegistryError
impl Error for MetadataRegistryError
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 MetadataRegistryError
impl PartialEq for MetadataRegistryError
impl Eq for MetadataRegistryError
impl StructuralPartialEq for MetadataRegistryError
Auto Trait Implementations§
impl Freeze for MetadataRegistryError
impl RefUnwindSafe for MetadataRegistryError
impl Send for MetadataRegistryError
impl Sync for MetadataRegistryError
impl Unpin for MetadataRegistryError
impl UnsafeUnpin for MetadataRegistryError
impl UnwindSafe for MetadataRegistryError
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