use std::ops::{Deref, DerefMut};
use packet::{self, Common};
use Packet;
#[derive(PartialEq, Eq, Hash, Clone, Debug)]
pub struct SEIP1 {
pub(crate) common: packet::Common,
}
impl SEIP1 {
pub fn new() -> Self {
Self {
common: Default::default(),
}
}
}
impl From<SEIP1> for super::SEIP {
fn from(p: SEIP1) -> Self {
super::SEIP::V1(p)
}
}
impl From<SEIP1> for Packet {
fn from(s: SEIP1) -> Self {
Packet::SEIP(s.into())
}
}
impl<'a> Deref for SEIP1 {
type Target = Common;
fn deref(&self) -> &Self::Target {
&self.common
}
}
impl<'a> DerefMut for SEIP1 {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.common
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn deref() {
let mut s = SEIP1 {
common: Default::default(),
};
assert_eq!(s.body(), None);
s.set_body(vec![0, 1, 2]);
assert_eq!(s.body(), Some(&[0, 1, 2][..]));
}
}