use super::{param_header::*, param_type::*, *};
use bytes::{Bytes, BytesMut};
#[derive(Default, Debug, Clone, PartialEq)]
pub(crate) struct ParamForwardTsnSupported;
impl fmt::Display for ParamForwardTsnSupported {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.header())
}
}
impl Param for ParamForwardTsnSupported {
fn header(&self) -> ParamHeader {
ParamHeader {
typ: ParamType::ForwardTsnSupp,
value_length: self.value_length() as u16,
}
}
fn unmarshal(raw: &Bytes) -> Result<Self> {
let _ = ParamHeader::unmarshal(raw)?;
Ok(ParamForwardTsnSupported {})
}
fn marshal_to(&self, buf: &mut BytesMut) -> Result<usize> {
self.header().marshal_to(buf)?;
Ok(buf.len())
}
fn value_length(&self) -> usize {
0
}
fn clone_to(&self) -> Box<dyn Param> {
Box::new(self.clone())
}
fn as_any(&self) -> &dyn Any {
self
}
}