pub trait InnerType {
    type Inner: PortData;
}
Expand description

Used to get access to the inner type from Port, Action, etc.

Required Associated Types§

Implementors§

source§

impl<'a, T: ActionData> InnerType for ActionRef<'a, T>

§

type Inner = T

source§

impl<T: ActionData> InnerType for PhysicalActionRef<T>

§

type Inner = T

source§

impl<T: PortData> InnerType for Port<T>

§

type Inner = T