#[non_exhaustive]pub enum CatalogError {
UnknownId {
family: IdFamily,
id: u64,
},
UnknownName {
kind: &'static str,
name: String,
},
DuplicateName,
DuplicateId,
SchemaConflict {
name: String,
reason: &'static str,
},
}Expand description
Errors from catalog identity: canonical ids, catalog names, and declared schema shapes.
§Performance
Formatting is O(message length).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
UnknownId
A referenced canonical id is not present.
Fields
UnknownName
A catalog name was not found in a bound schema.
Fields
DuplicateName
Duplicate catalog name or ID.
DuplicateId
Duplicate canonical ID.
SchemaConflict
A declared schema item conflicts with an existing catalog entry.
Trait Implementations§
Source§impl Debug for CatalogError
impl Debug for CatalogError
Source§impl Display for CatalogError
impl Display for CatalogError
Source§impl Error for CatalogError
impl Error for CatalogError
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<CatalogError> for DbError
impl From<CatalogError> for DbError
Source§fn from(error: CatalogError) -> Self
fn from(error: CatalogError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CatalogError
impl RefUnwindSafe for CatalogError
impl Send for CatalogError
impl Sync for CatalogError
impl Unpin for CatalogError
impl UnsafeUnpin for CatalogError
impl UnwindSafe for CatalogError
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