Trait reproto_core::Flavor [] [src]

pub trait Flavor {
    type Type: Debug + Clone + PartialEq + Eq;
    type Field: Debug + Clone;
    type Endpoint: Debug + Clone;
}

The flavor of intermediate representation being used.

Associated Types

The type that this flavor serializes to.

The field that this flavor serializes to.

The endpoint that this flavor serializes to.

Implementors