pub enum ConnectRequestType<T> {
Unary(UnaryRequest<T>),
Streaming(StreamingRequest<T>),
UnaryGet(UnaryGetRequest),
}Expand description
Connect request types.
Variants§
Implementations§
Auto Trait Implementations§
impl<T> !Freeze for ConnectRequestType<T>
impl<T> !RefUnwindSafe for ConnectRequestType<T>
impl<T> Send for ConnectRequestType<T>where
T: Send,
impl<T> Sync for ConnectRequestType<T>where
T: Sync,
impl<T> Unpin for ConnectRequestType<T>where
T: Unpin,
impl<T> !UnwindSafe for ConnectRequestType<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more