pub trait Request<'a> {
// Required methods
fn get_common_fields(&self) -> &CommonFields<'a>;
fn get_common_fields_mut(&mut self) -> &mut CommonFields<'a>;
}
Expand description
The base trait for all request models. Used to identify the model as a request.