pub trait ApiError: Display + Clone + Serialize + for<'de> Deserialize<'de> + Send + Sync + Debug { }
Expand description

An error that can be used within a Api definition.

Implementors§

source§

impl<T> ApiError for Twhere T: Display + Clone + Serialize + for<'de> Deserialize<'de> + Send + Sync + Debug,