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
use std::{error::Error, fmt};

/// Error type for Dstore, contains message as string
#[derive(Debug)]
pub struct DstoreError(pub String);

impl fmt::Display for DstoreError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "dstore error: {}", self.0)
    }
}

impl Error for DstoreError {}

mod dstore_proto {
    tonic::include_proto!("dstore");
}

/// Maximum size of contents in a gRPC packet as per standard
pub const MAX_BYTE_SIZE: usize = 4_194_304;

mod global;
mod local;

pub use global::Global;
pub use local::Local;