@@ -153,7 +153,7 @@ pub enum FlightExchange {
153153impl FlightExchange {
154154 pub fn from_server (
155155 streaming : Request < Streaming < FlightData > > ,
156- response_tx : Sender < std :: result :: Result < FlightData , Status > > ,
156+ response_tx : Sender < Result < FlightData , Status > > ,
157157 ) -> FlightExchange {
158158 let mut streaming = streaming. into_inner ( ) ;
159159 let ( tx, rx) = async_channel:: bounded ( 1 ) ;
@@ -260,7 +260,7 @@ pub struct ClientFlightExchange {
260260 is_closed_request : AtomicBool ,
261261 is_closed_response : AtomicBool ,
262262 response_tx : Sender < FlightData > ,
263- request_rx : Receiver < std :: result :: Result < FlightData , Status > > ,
263+ request_rx : Receiver < Result < FlightData , Status > > ,
264264}
265265
266266impl ClientFlightExchange {
@@ -344,8 +344,8 @@ pub struct ServerFlightExchange {
344344 state : Arc < ChannelState > ,
345345 is_closed_request : AtomicBool ,
346346 is_closed_response : AtomicBool ,
347- request_rx : Receiver < std :: result :: Result < FlightData , Status > > ,
348- response_tx : Sender < std :: result :: Result < FlightData , Status > > ,
347+ request_rx : Receiver < Result < FlightData , Status > > ,
348+ response_tx : Sender < Result < FlightData , Status > > ,
349349}
350350
351351impl Clone for ServerFlightExchange {
0 commit comments