pub trait Insert<NewReq, MinDepth, Queries, Next>{
type MinDepth;
type Queries;
// Required method
fn insert(self, new_req: NewReq) -> Next;
}Expand description
This requires that the target requirement does not already exist in the tree.