pub trait Context {
    type String;
    type I64;
    type XML;
}
Expand description

Type-Parameters to Value

This trait is used to parameterize Value to produce the concrete types that are used elsewhere in this crate.

Required Associated Types

The type that holds a ValueType::String

The type that holds a ValueType::BigInt

The type that holds a ValueType::VarChar

Implementors