pub trait IntoSbrdError:
'static
+ Error
+ Sized {
// Provided method
fn into_sbrd_gen_error(self, kind: SchemaErrorKind) -> SchemaError { ... }
}Expand description
Trait for convert to SchemaError from other error
Provided Methods§
Sourcefn into_sbrd_gen_error(self, kind: SchemaErrorKind) -> SchemaError
fn into_sbrd_gen_error(self, kind: SchemaErrorKind) -> SchemaError
Converter function to SchemaError from other error
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.