pub trait IsError {
// Required method
fn is_error(&self) -> bool;
}Expand description
Verify if the value represents an error condition.
Some librdkafka codes are informational, rather than true errors.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".