pub mod command;
pub mod display;
impl From<command::response_content::ContentType> for command::ResponseContent {
fn from(value: command::response_content::ContentType) -> Self {
Self {
content_type: Some(value),
}
}
}
impl From<command::request::RequestType> for command::Request {
fn from(value: command::request::RequestType) -> Self {
Self {
request_type: Some(value),
}
}
}