Trait xylem::Schema [−][src]
pub trait Schema: 'static {
type Context: Context;
type Error: AbstractError;
}
Expand description
The schema type for a specific set of conversion rules.
Implementors should be declared in the same crate as the type they convert to avoid error E0210.
Associated Types
type Error: AbstractError
type Error: AbstractError
The error type for conversions in this schema.