pub trait IterateBounds {
// Required method
fn into_bounds(self) -> (Option<Vec<u8>>, Option<Vec<u8>>);
}Expand description
A range which can be set as iterate bounds on crate::ReadOptions.
See crate::ReadOptions::set_iterate_range for documentation and
examples.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".