pub struct InternalChoice<Row>(/* private fields */);Trait Implementations§
Source§impl<Row> Protocol for InternalChoice<Row>
impl<Row> Protocol for InternalChoice<Row>
type ClientEndpoint = ReceiverOnce<AppSum<'static, <Row as ToRow>::Row, ClientEndpointF>>
type ProviderEndpoint = SenderOnce<AppSum<'static, <Row as ToRow>::Row, ClientEndpointF>>
fn create_endpoints() -> (Self::ProviderEndpoint, Self::ClientEndpoint)
fn forward( client_end: Self::ClientEndpoint, provider_end: Self::ProviderEndpoint, ) -> Pin<Box<dyn Future<Output = ()> + Send + 'static>>
Source§impl<Row1, Row2, Row3, A> RecApp<A> for InternalChoice<Row1>
impl<Row1, Row2, Row3, A> RecApp<A> for InternalChoice<Row1>
type Applied = InternalChoice<RecRow<A, Row1>>
type Applied = InternalChoice<SharedRecRow<A, Row1>>
impl<Row1> SealedProtocol for InternalChoice<Row1>
Auto Trait Implementations§
impl<Row> Freeze for InternalChoice<Row>
impl<Row> RefUnwindSafe for InternalChoice<Row>where
Row: RefUnwindSafe,
impl<Row> Send for InternalChoice<Row>where
Row: Send,
impl<Row> Sync for InternalChoice<Row>where
Row: Sync,
impl<Row> Unpin for InternalChoice<Row>where
Row: Unpin,
impl<Row> UnwindSafe for InternalChoice<Row>where
Row: UnwindSafe,
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