use crate::packet;
use crate::Packet;
#[derive(Clone, Debug)]
pub struct SEIP1 {
pub(crate) common: packet::Common,
container: packet::Container,
}
impl PartialEq for SEIP1 {
fn eq(&self, other: &SEIP1) -> bool {
self.container == other.container
}
}
impl Eq for SEIP1 {}
impl std::hash::Hash for SEIP1 {
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
std::hash::Hash::hash(&self.container, state);
}
}
impl SEIP1 {
pub fn new() -> Self {
Self {
common: Default::default(),
container: Default::default(),
}
}
}
impl_container_forwards!(SEIP1);
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())
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn deref() {
let mut s = SEIP1::new();
assert_eq!(s.body(), &[]);
s.set_body(vec![0, 1, 2]);
assert_eq!(s.body(), &[0, 1, 2]);
}
}