Trait Context

Source
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§

Source

type String

The type that holds a ValueType::String

Source

type I64

The type that holds a ValueType::BigInt

Source

type XML

The type that holds a ValueType::VarChar

Implementors§