1 2 3 4 5 6 7 8
/// Errors from the PCS External API client. #[derive(Debug, thiserror::Error)] #[non_exhaustive] pub enum Error { /// Connection or transport error. #[error("External API error: {0}")] External(String), }