Type Definition flow_sdk::client::GrpcSendResult [−][src]
pub type GrpcSendResult<'a, Output> = Pin<Box<dyn Future<Output = Result<Output, TonicError>> + 'a>>;
Expand description
The return type of sending a request over the gRPC connection.
This is a future that resolves to a result which contains either the output or an error.