pub trait PagerRequestType {
// Required method
fn request_type_name() -> &'static str;
}Expand description
A trait for specializing PagerRange for different request types.
Required Methods§
Sourcefn request_type_name() -> &'static str
fn request_type_name() -> &'static str
Returns the name of the request type for logging purposes.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.