pub enum DiscoveryCatalogStoreError {
CapacityReached(DiscoveredInterfaceId),
}Variants§
CapacityReached(DiscoveredInterfaceId)
Trait Implementations§
Source§impl Clone for DiscoveryCatalogStoreError
impl Clone for DiscoveryCatalogStoreError
Source§fn clone(&self) -> DiscoveryCatalogStoreError
fn clone(&self) -> DiscoveryCatalogStoreError
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 DiscoveryCatalogStoreError
Source§impl Debug for DiscoveryCatalogStoreError
impl Debug for DiscoveryCatalogStoreError
Source§impl Display for DiscoveryCatalogStoreError
impl Display for DiscoveryCatalogStoreError
impl Eq for DiscoveryCatalogStoreError
Source§impl Error for DiscoveryCatalogStoreError
Available on crate feature std only.
impl Error for DiscoveryCatalogStoreError
Available on crate feature
std only.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()
impl StructuralPartialEq for DiscoveryCatalogStoreError
Auto Trait Implementations§
impl Freeze for DiscoveryCatalogStoreError
impl RefUnwindSafe for DiscoveryCatalogStoreError
impl Send for DiscoveryCatalogStoreError
impl Sync for DiscoveryCatalogStoreError
impl Unpin for DiscoveryCatalogStoreError
impl UnsafeUnpin for DiscoveryCatalogStoreError
impl UnwindSafe for DiscoveryCatalogStoreError
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