blueprint_manager_bridge/
error.rs1#[derive(Debug, thiserror::Error)]
2pub enum Error {
3 #[error(transparent)]
4 Io(#[from] std::io::Error),
5
6 #[error(transparent)]
7 Transport(#[from] tonic::transport::Error),
8
9 #[error(transparent)]
10 Status(#[from] tonic::Status),
11}