Trait netsim_embed::PrimitiveValues [−]
pub trait PrimitiveValues {
type T;
fn to_primitive_values(&self) -> Self::T;
}
Expand description
Used to convert a type to primitive values representing it.
Associated Types
type T
type T
A tuple of types, to represent the current value.
Required methods
fn to_primitive_values(&self) -> Self::T
fn to_primitive_values(&self) -> Self::T
Convert a value to primitive types representing it.