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§

source§

impl Context for FileContext

source§

impl Context for OwnedContext

§

type String = String

§

type I64 = i64

§

type XML = String

source§

impl<'a> Context for MemContext<'a>

§

type String = &'a Latin1Str

§

type I64 = i64

§

type XML = &'a Latin1Str