pub trait PrimitiveValues {
    type T;

    fn to_primitive_values(&self) -> Self::T;
}
Expand description

Used to convert a type to primitive values representing it.

Required Associated Types

A tuple of types, to represent the current value.

Required Methods

Convert a value to primitive types representing it.

Implementations on Foreign Types

Implementors