blob: a1ae05c8065aabfb8123e4cbc9fc8ef1aa79933a (
plain) (
blame)
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
|
// Copyright 2022-2024 Gabriel Bjørnager Jensen.
use crate::serialise::Serialise;
use std::fmt::{Debug, Formatter};
use std::mem::size_of;
#[derive(Clone, Eq, PartialEq)]
pub struct SStream(Vec<u8>);
impl SStream {
#[must_use]
pub const fn new() -> Self { Self(Vec::new()) }
pub fn append(&mut self, extra: &[u8]) {
self.0.extend(extra);
}
}
impl AsRef<[u8]> for SStream {
#[inline(always)]
fn as_ref(&self) -> &[u8] { self.0.as_ref() }
}
impl Debug for SStream {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
write!(f, "[")?;
for v in &self.0 { write!(f, "{v:#02X},")? };
write!(f, "]")?;
Ok(())
}
}
impl Default for SStream {
#[inline(always)]
fn default() -> Self { Self::new() }
}
impl<T: Serialise> From<&T> for SStream {
fn from(value: &T) -> Self {
let mut stream = Self(Vec::with_capacity(size_of::<T>()));
value.serialise(&mut stream);
stream
}
}
impl From<SStream> for Box<[u8]> {
#[inline(always)]
fn from(value: SStream) -> Self { value.0.into_boxed_slice() }
}
|