pub enum RouteType {
    Input(NameRoute),
    Output(Name),
    Internal(NameRoute),
    Invalid(String),
}
Expand description

A Route can be of various Types

Variants

Input(NameRoute)

The route refers to an input of a Process

Output(Name)

The Route refers to the output of a Process

Internal(NameRoute)

The route is internal to a Process

Invalid(String)

The route is invalid (needed for errors during deserialization)

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.