pub enum ServiceRegistryError {
Duplicate,
}Expand description
Service registration failure.
Variants§
Duplicate
Trait Implementations§
Source§impl Clone for ServiceRegistryError
impl Clone for ServiceRegistryError
Source§fn clone(&self) -> ServiceRegistryError
fn clone(&self) -> ServiceRegistryError
Returns a copy 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 ServiceRegistryError
impl Debug for ServiceRegistryError
Source§impl Display for ServiceRegistryError
impl Display for ServiceRegistryError
Source§impl Error for ServiceRegistryError
impl Error for ServiceRegistryError
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 From<ServiceRegistryError> for EvidenceSessionError
impl From<ServiceRegistryError> for EvidenceSessionError
Source§fn from(source: ServiceRegistryError) -> Self
fn from(source: ServiceRegistryError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ServiceRegistryError
impl PartialEq for ServiceRegistryError
impl Copy for ServiceRegistryError
impl Eq for ServiceRegistryError
impl StructuralPartialEq for ServiceRegistryError
Auto Trait Implementations§
impl Freeze for ServiceRegistryError
impl RefUnwindSafe for ServiceRegistryError
impl Send for ServiceRegistryError
impl Sync for ServiceRegistryError
impl Unpin for ServiceRegistryError
impl UnwindSafe for ServiceRegistryError
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