1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use super::*;

pub struct ProbeResponseFrame<'a> {
    bytes: &'a [u8],
}

impl<'a> ProbeResponseFrame<'a> {
    pub fn new(bytes: &'a [u8]) -> Self {
        Self { bytes }
    }
}
impl FrameTrait for ProbeResponseFrame<'_> {
    fn bytes(&self) -> &[u8] {
        self.bytes
    }
}
impl FragmentSequenceTrait for ProbeResponseFrame<'_> {}
impl ManagementFrameTrait for ProbeResponseFrame<'_> {}
impl BeaconFixedParametersTrait for ProbeResponseFrame<'_> {}
impl TaggedParametersTrait for ProbeResponseFrame<'_> {
    // TODO: Check that this is correct
    const TAGGED_PARAMETERS_START: usize = 36;
}