trait Visitor {
    // Required method
    fn visit_tuple_schema_element(
        &self,
        tuple_schema_element: &TupleSchemaElement
    ) -> bool;
}
Expand description

Required Methods§

source

fn visit_tuple_schema_element( &self, tuple_schema_element: &TupleSchemaElement ) -> bool

Implementors§