1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
mod fixed_parameters;

pub use self::fixed_parameters::*;
use super::*;

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

impl<'a> AssociationResponseFrame<'a> {
    pub fn new(bytes: &'a [u8]) -> Self {
        Self { bytes }
    }
}
impl FrameTrait for AssociationResponseFrame<'_> {
    fn bytes(&self) -> &[u8] {
        self.bytes
    }
}
impl FragmentSequenceTrait for AssociationResponseFrame<'_> {}
impl ManagementFrameTrait for AssociationResponseFrame<'_> {}
impl AssociationResponseFixedParametersTrait for AssociationResponseFrame<'_> {}
impl TaggedParametersTrait for AssociationResponseFrame<'_> {
    const TAGGED_PARAMETERS_START: usize = Self::FIXED_PARAMETERS_END;
}