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

            
8
pub struct Unmount;
9

            
10
impl Command for Unmount {
11
    type Response = ();
12
    const COMMAND: &'static str = "unmount";
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
        debug_assert!(parts.next().is_none());
21

            
22
        Ok((Request::Unmount(path), ""))
23
    }
24

            
25
    fn parse_response(
26
        parts: ResponseAttributes<'_>,
27
    ) -> Result<Self::Response, ResponseParserError> {
28
        debug_assert!(parts.is_empty());
29
        Ok(())
30
    }
31
}