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.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".