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

            
8
pub struct Mount;
9

            
10
impl Command for Mount {
11
    type Response = ();
12
    const COMMAND: &'static str = "mount";
13

            
14
    fn parse_request(mut parts: std::str::SplitWhitespace<'_>) -> RequestParserResult<'_> {
15
        let path = parts
16
            .next()
17
            .ok_or(RequestParserError::UnexpectedEOF)?
18
            .to_string();
19

            
20
        let uri = parts
21
            .next()
22
            .ok_or(RequestParserError::UnexpectedEOF)?
23
            .to_string();
24

            
25
        debug_assert!(parts.next().is_none());
26

            
27
        Ok((Request::Mount(path, uri), ""))
28
    }
29

            
30
    fn parse_response(
31
        parts: ResponseAttributes<'_>,
32
    ) -> Result<Self::Response, ResponseParserError> {
33
        debug_assert!(parts.is_empty());
34
        Ok(())
35
    }
36
}