pub trait CursorTrait {
type Selector: SelectorTrait + Send + Sync;
}Expand description
A trait for any type that can be turn into a cursor
Required Associated Types§
Sourcetype Selector: SelectorTrait + Send + Sync
type Selector: SelectorTrait + Send + Sync
Select operation
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".