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

The context type for this schema.

The error type for conversions in this schema.

Implementors