#[non_exhaustive]pub enum SchemaRegistryError {
Unknown(i32),
DecodingError(DecodeError),
UnknownFormat(i64),
InvalidSchema,
BadHeader,
}
Expand description
An error that can occur when interacting with the Schema Registry
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.
Unknown(i32)
Unknown error from the registry with the corresponding error code.
DecodingError(DecodeError)
UnknownFormat(i64)
InvalidSchema
BadHeader
Trait Implementations§
Source§impl Debug for SchemaRegistryError
impl Debug for SchemaRegistryError
Source§impl Display for SchemaRegistryError
impl Display for SchemaRegistryError
Source§impl Error for SchemaRegistryError
impl Error for SchemaRegistryError
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<DecodeError> for SchemaRegistryError
impl From<DecodeError> for SchemaRegistryError
Source§fn from(err: DecodeError) -> SchemaRegistryError
fn from(err: DecodeError) -> SchemaRegistryError
Converts to this type from the input type.
Source§impl From<FromUtf8Error> for SchemaRegistryError
impl From<FromUtf8Error> for SchemaRegistryError
Source§fn from(_: FromUtf8Error) -> SchemaRegistryError
fn from(_: FromUtf8Error) -> SchemaRegistryError
Converts to this type from the input type.
Source§impl PartialEq for SchemaRegistryError
impl PartialEq for SchemaRegistryError
impl Eq for SchemaRegistryError
impl StructuralPartialEq for SchemaRegistryError
Auto Trait Implementations§
impl Freeze for SchemaRegistryError
impl RefUnwindSafe for SchemaRegistryError
impl Send for SchemaRegistryError
impl Sync for SchemaRegistryError
impl Unpin for SchemaRegistryError
impl UnwindSafe for SchemaRegistryError
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.