aboutsummaryrefslogtreecommitdiff
path: root/src/protocol/commands/_d_upcase.rs
blob: c53253285db637f5716219a5d4e988008028ba90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use super::prelude::*;

use crate::common::Pid;

#[derive(Debug)]
pub struct D {
    pub pid: Option<Pid>,
}

impl<'a> ParseCommand<'a> for D {
    #[inline(always)]
    fn from_packet(buf: PacketBuf<'a>) -> Option<Self> {
        let body = buf.into_body();
        let pid = match body {
            [b';', pid @ ..] => Some(Pid::new(decode_hex(pid).ok()?)?),
            _ => None,
        };
        Some(D { pid })
    }
}