pub enum FunctionCallTransition<S, C> {
Response(Conn<S, AwaitingReady, C>, Bytes),
Error(Conn<S, Draining, C>, ErrorResponse),
}Expand description
Backend branch available for the legacy function-call protocol.
Variants§
Response(Conn<S, AwaitingReady, C>, Bytes)
The backend returned the function value.
Error(Conn<S, Draining, C>, ErrorResponse)
The backend rejected the call.
Trait Implementations§
Auto Trait Implementations§
impl<S, C> !Freeze for FunctionCallTransition<S, C>
impl<S, C> RefUnwindSafe for FunctionCallTransition<S, C>where
S: RefUnwindSafe,
C: RefUnwindSafe,
impl<S, C> Send for FunctionCallTransition<S, C>
impl<S, C> Sync for FunctionCallTransition<S, C>
impl<S, C> Unpin for FunctionCallTransition<S, C>
impl<S, C> UnsafeUnpin for FunctionCallTransition<S, C>where
S: UnsafeUnpin,
impl<S, C> UnwindSafe for FunctionCallTransition<S, C>where
S: UnwindSafe,
C: UnwindSafe,
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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