Searched refs:StdResult (Results 1 – 1 of 1) sorted by relevance
7 use std::result::Result as StdResult;20 type Result<T> = StdResult<Response<T>, Status>;22 type Stream<T> = Pin<Box<dyn tokio_stream::Stream<Item = StdResult<T, Status>> + Send + 'static>>;23 type BoxFuture<T, E> = Pin<Box<dyn Future<Output = StdResult<T, E>> + Send + 'static>>;192 fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<StdResult<(), Self::Error>> { in poll_ready() argument