1
use crate::{
2
    commands::{Command, RequestParserResult, ResponseAttributes, ResponseParserError},
3
    Request,
4
};
5

            
6
pub struct ListMounts;
7

            
8
impl Command for ListMounts {
9
    type Response = Vec<(String, String)>;
10
    const COMMAND: &'static str = "listmounts";
11

            
12
    fn parse_request(mut parts: std::str::SplitWhitespace<'_>) -> RequestParserResult<'_> {
13
        debug_assert!(parts.next().is_none());
14
        Ok((Request::ListMounts, ""))
15
    }
16

            
17
    fn parse_response(
18
        parts: ResponseAttributes<'_>,
19
    ) -> Result<Self::Response, ResponseParserError> {
20
        unimplemented!()
21
    }
22
}