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
#![deny(missing_docs)]
#![warn(clippy::all)]
#![allow(clippy::let_unit_value)]
use serde::{Deserialize, Serialize};
mod task_group;
mod staged_file;
#[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]
#[serde(transparent)]
pub struct EnrollmentData(pub Vec<u8>);
impl std::ops::Deref for EnrollmentData {
type Target = Vec<u8>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct PrekeyMaterial(pub Vec<u8>);
impl std::ops::Deref for PrekeyMaterial {
type Target = Vec<u8>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
pub use crate::task_group::{cancel_or, TaskGroup, TaskGroupCancel, TaskGroupError};
pub use crate::staged_file::{StagedFile, StagedFileError};