use std::io::{self};
use crate::{
binlog::{
BinlogCtx, BinlogEvent, BinlogStruct,
consts::{BinlogVersion, EventType},
},
io::ParseBuf,
misc::raw::{RawInt, int::LeU64},
proto::{MyDeserialize, MySerialize},
};
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct RandEvent {
pub seed1: RawInt<LeU64>,
pub seed2: RawInt<LeU64>,
}
impl<'de> MyDeserialize<'de> for RandEvent {
const SIZE: Option<usize> = Some(16);
type Ctx = BinlogCtx<'de>;
fn deserialize(_: Self::Ctx, buf: &mut ParseBuf<'de>) -> io::Result<Self> {
Ok(Self {
seed1: buf.parse_unchecked(())?,
seed2: buf.parse_unchecked(())?,
})
}
}
impl MySerialize for RandEvent {
fn serialize(&self, buf: &mut Vec<u8>) {
self.seed1.serialize(&mut *buf);
self.seed2.serialize(&mut *buf);
}
}
impl<'a> BinlogEvent<'a> for RandEvent {
const EVENT_TYPE: EventType = EventType::RAND_EVENT;
}
impl<'a> BinlogStruct<'a> for RandEvent {
fn len(&self, _version: BinlogVersion) -> usize {
8
}
}