pub trait CoreApiClient: NadeoApiClient {
// Provided methods
async fn get_zones(&self) -> Result<Vec<Zone>, Box<dyn Error>> { ... }
async fn get_zone_tree(&self) -> Result<&ZoneTree, Box<dyn Error>> { ... }
}Expand description
API calls for the Core API
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.