blob: d962dc866f43bb3d42273b24c99bcbb4c8ea738e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//! The data that we will serialize and deserialize.
use rustc_macros::{Decodable, Encodable};
use rustc_middle::dep_graph::{WorkProduct, WorkProductId};
#[derive(Debug, Encodable, Decodable)]
pub(crate) struct SerializedWorkProduct {
/// node that produced the work-product
pub id: WorkProductId,
/// work-product data itself
pub work_product: WorkProduct,
}
|