pub trait InfoQueryParser {
// Required methods
fn parse_info(&self) -> Vec<&str>;
fn wants_user_count(&self) -> bool;
fn wants_subscription_count(&self) -> bool;
fn wants_cache(&self) -> bool;
}Required Methods§
fn parse_info(&self) -> Vec<&str>
fn wants_user_count(&self) -> bool
fn wants_subscription_count(&self) -> bool
fn wants_cache(&self) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".