pub type AppResponseResult = Result<AppResponse, NetworkError>;
Expand description
Type that represents the response of the network layer to the application layer’s event handler.
Aliased Type§
enum AppResponseResult {
Ok(AppResponse),
Err(NetworkError),
}