[][src]Trait assembly_data::fdb::common::Context

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

Type-Parameters to Value

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

Associated Types

type String[src]

The type that holds a ValueType::String

type I64[src]

The type that holds a ValueType::BigInt

type XML[src]

The type that holds a ValueType::VarChar

Loading content...

Implementors

impl Context for OwnedContext[src]

type String = String

type I64 = i64

type XML = String

impl Context for FileContext[src]

impl<'a> Context for MemContext<'a>[src]

type String = &'a Latin1Str

type I64 = i64

type XML = &'a Latin1Str

Loading content...