use super::Encode; use crate::io::BufMut; use byteorder::NetworkEndian; pub struct Flush; impl Encode for Flush { #[inline] fn encode(&self, buf: &mut Vec) { buf.push(b'H'); buf.put_i32::(4); } }