TypeCompatible

Trait TypeCompatible 

Source
pub trait TypeCompatible<T> {
    // Required method
    fn is_compatible(&self) -> bool;
}
Expand description

Trait for enforcing type compatibility between pipeline stages

Required Methods§

Source

fn is_compatible(&self) -> bool

Check if this stage is compatible with the given type

Implementors§