1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
use std::io::{self};
use crate::{
binlog::{
consts::{BinlogVersion, EventType},
BinlogCtx, BinlogEvent, BinlogStruct,
},
io::ParseBuf,
misc::raw::{int::LeU64, RawInt},
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
}
}