pub enum KWError {
RdKafka(RDKafkaError),
Kafka(KafkaError),
Normal(Error),
}
Variants§
Trait Implementations§
Source§impl Error for KWError
impl Error for KWError
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<KafkaError> for KWError
impl From<KafkaError> for KWError
Source§fn from(source: KafkaError) -> Self
fn from(source: KafkaError) -> Self
Converts to this type from the input type.
Source§impl From<RDKafkaError> for KWError
impl From<RDKafkaError> for KWError
Source§fn from(source: RDKafkaError) -> Self
fn from(source: RDKafkaError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KWError
impl RefUnwindSafe for KWError
impl Send for KWError
impl Sync for KWError
impl Unpin for KWError
impl UnwindSafe for KWError
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