Struct TokioParallelRuntimeComponents

Source
pub struct TokioParallelRuntimeComponents;

Trait Implementations§

Source§

impl DelegateComponent<ChannelCreatorComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<ChannelOnceCreatorComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<ChannelOnceTypeComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<ChannelOnceUserComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<ChannelTypeComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<ChannelUserComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<ChildProcessStarterComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<ChildProcessTypeComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<ChildProcessWaiterComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<CommandExecutorComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<CommandWithEnvsExecutorComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<ConcurrentTaskRunnerComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<DirCreatorComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<FileAsStringReaderComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<FileCopierComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<FilePathTypeComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<MutexComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<RandomGeneratorComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<ReceiverStreamerComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<SenderClonerComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<SleeperComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<StreamMapperComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<StreamTypeComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<StringToFileWriterComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<SubscriptionComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<TaskSpawnerComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<TcpPortReserverComponent> for TokioParallelRuntimeComponents

Source§

impl DelegateComponent<TimeComponent> for TokioParallelRuntimeComponents

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<Runtime, Component, Delegate> BoxedStreamTypeProvider<Runtime> for Component
where Runtime: Async, Component: DelegateComponent<StreamTypeComponent, Delegate = Delegate>, Delegate: BoxedStreamTypeProvider<Runtime>,

Source§

fn to_boxed_stream<Item>( stream: <Component as ProvideStreamType<Runtime>>::Stream<Item>, ) -> Pin<Box<dyn Stream<Item = Item> + Sync + Send>>
where Item: Async,

Source§

fn from_boxed_stream<Item>( stream: Pin<Box<dyn Stream<Item = Item> + Sync + Send>>, ) -> <Component as ProvideStreamType<Runtime>>::Stream<Item>
where Item: Async,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<Runtime, Component, Delegate> OneShotChannelTypeProvider<Runtime> for Component
where Component: DelegateComponent<ChannelOnceTypeComponent, Delegate = Delegate>, Delegate: OneShotChannelTypeProvider<Runtime>,

Source§

fn from_oneshot_sender<T>( sender: Sender<T>, ) -> <Component as ProvideChannelOnceType<Runtime>>::SenderOnce<T>
where T: Async,

Source§

fn from_oneshot_receiver<T>( receiver: Receiver<T>, ) -> <Component as ProvideChannelOnceType<Runtime>>::ReceiverOnce<T>
where T: Async,

Source§

fn to_oneshot_sender<T>( sender: <Component as ProvideChannelOnceType<Runtime>>::SenderOnce<T>, ) -> Sender<T>
where T: Async,

Source§

fn to_oneshot_receiver<T>( receiver: <Component as ProvideChannelOnceType<Runtime>>::ReceiverOnce<T>, ) -> Receiver<T>
where T: Async,

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<Runtime, Component, Delegate> UnboundedChannelTypeProvider<Runtime> for Component
where Runtime: Async, Component: DelegateComponent<ChannelTypeComponent, Delegate = Delegate>, Delegate: UnboundedChannelTypeProvider<Runtime>,

Source§

fn from_unbounded_sender<T>( sender: Arc<Mutex<UnboundedSender<T>>>, ) -> <Component as ProvideChannelType<Runtime>>::Sender<T>
where T: Async,

Source§

fn from_unbounded_receiver<T>( receiver: UnboundedReceiver<T>, ) -> <Component as ProvideChannelType<Runtime>>::Receiver<T>
where T: Async,

Source§

fn to_unbounded_receiver<T>( receiver: <Component as ProvideChannelType<Runtime>>::Receiver<T>, ) -> UnboundedReceiver<T>
where T: Async,

Source§

fn to_unbounded_sender_ref<T>( sender: &<Component as ProvideChannelType<Runtime>>::Sender<T>, ) -> &Arc<Mutex<UnboundedSender<T>>>
where T: Async,

Source§

fn to_unbounded_receiver_ref<T>( receiver: &mut <Component as ProvideChannelType<Runtime>>::Receiver<T>, ) -> &mut UnboundedReceiver<T>
where T: Async,

Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<A> Async for A
where A: Send + Sync + 'static,