corsa_client 0.14.0

Typed stdio API client bindings for Corsa
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::sync::Arc;

use super::{CapabilitiesResponse, ProjectSession};
use crate::Result;

impl ProjectSession {
    /// Returns the capabilities of the underlying runtime.
    pub async fn describe_capabilities(&self) -> Result<Arc<CapabilitiesResponse>> {
        self.client().describe_capabilities().await
    }
}