-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathmod.rs
37 lines (28 loc) · 1.11 KB
/
mod.rs
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
//! Structures and functions to aid in various TUF data interchange formats.
pub(crate) mod cjson;
pub use cjson::{Json, JsonPretty};
use serde::de::DeserializeOwned;
use serde::ser::Serialize;
use std::fmt::Debug;
use crate::Result;
/// The format used for data interchange, serialization, and deserialization.
pub trait DataInterchange: Debug + PartialEq + Clone + Send {
/// The type of data that is contained in the `signed` portion of metadata.
type RawData: Serialize + DeserializeOwned + Clone + PartialEq;
/// The data interchange's extension.
fn extension() -> &'static str;
/// A function that canonicalizes data to allow for deterministic signatures.
fn canonicalize(raw_data: &Self::RawData) -> Result<Vec<u8>>;
/// Deserialize from `RawData`.
fn deserialize<T>(raw_data: &Self::RawData) -> Result<T>
where
T: DeserializeOwned;
/// Serialize into `RawData`.
fn serialize<T>(data: &T) -> Result<Self::RawData>
where
T: Serialize;
/// Read a struct from a stream.
fn from_slice<T>(slice: &[u8]) -> Result<T>
where
T: DeserializeOwned;
}