Struct Task

Source
pub struct Task<T> { /* private fields */ }
Expand description

A set of concurrent actions to be performed by the iced runtime.

A Task may produce a bunch of values of type T.

Implementations§

Source§

impl<T> Task<T>

Source

pub fn none() -> Self

Creates a Task that does nothing.

Source

pub fn done(value: T) -> Self
where T: MaybeSend + 'static,

Creates a new Task that instantly produces the given value.

Source

pub fn perform<A>( future: impl Future<Output = A> + MaybeSend + 'static, f: impl FnOnce(A) -> T + MaybeSend + 'static, ) -> Self
where T: MaybeSend + 'static, A: MaybeSend + 'static,

Creates a Task that runs the given Future to completion and maps its output with the given closure.

Source

pub fn run<A>( stream: impl Stream<Item = A> + MaybeSend + 'static, f: impl Fn(A) -> T + MaybeSend + 'static, ) -> Self
where T: 'static,

Creates a Task that runs the given [Stream] to completion and maps each item with the given closure.

Source

pub fn sip<S>( sipper: S, on_progress: impl FnMut(S::Progress) -> T + MaybeSend + 'static, on_output: impl FnOnce(<S as Future>::Output) -> T + MaybeSend + 'static, ) -> Self
where S: Core + MaybeSend + 'static, T: MaybeSend + 'static,

Available on crate feature sipper only.

Creates a Task that runs the given [Sipper] to completion, mapping progress with the first closure and the output with the second one.

Source

pub fn batch(tasks: impl IntoIterator<Item = Self>) -> Self
where T: 'static,

Combines the given tasks and produces a single Task that will run all of them in parallel.

Source

pub fn map<O>(self, f: impl FnMut(T) -> O + MaybeSend + 'static) -> Task<O>
where T: MaybeSend + 'static, O: MaybeSend + 'static,

Maps the output of a Task with the given closure.

Source

pub fn then<O>( self, f: impl FnMut(T) -> Task<O> + MaybeSend + 'static, ) -> Task<O>
where T: MaybeSend + 'static, O: MaybeSend + 'static,

Performs a new Task for every output of the current Task using the given closure.

This is the monadic interface of Task—analogous to Future and [Stream].

Source

pub fn chain(self, task: Self) -> Self
where T: 'static,

Chains a new Task to be performed once the current one finishes completely.

Source

pub fn collect(self) -> Task<Vec<T>>
where T: MaybeSend + 'static,

Creates a new Task that collects all the output of the current one into a Vec.

Source

pub fn discard<O>(self) -> Task<O>
where T: MaybeSend + 'static, O: MaybeSend + 'static,

Creates a new Task that discards the result of the current one.

Useful if you only care about the side effects of a Task.

Source

pub fn abortable(self) -> (Self, Handle)
where T: 'static,

Creates a new Task that can be aborted with the returned Handle.

Source

pub fn future(future: impl Future<Output = T> + MaybeSend + 'static) -> Self
where T: 'static,

Creates a new Task that runs the given Future and produces its output.

Source

pub fn stream(stream: impl Stream<Item = T> + MaybeSend + 'static) -> Self
where T: 'static,

Creates a new Task that runs the given [Stream] and produces each of its items.

Source

pub fn units(&self) -> usize

Returns the amount of work “units” of the Task.

Source§

impl<T> Task<Option<T>>

Source

pub fn and_then<A>( self, f: impl Fn(T) -> Task<A> + MaybeSend + 'static, ) -> Task<A>
where T: MaybeSend + 'static, A: MaybeSend + 'static,

Executes a new Task after this one, only when it produces Some value.

The value is provided to the closure to create the subsequent Task.

Source§

impl<T, E> Task<Result<T, E>>

Source

pub fn and_then<A>( self, f: impl Fn(T) -> Task<A> + MaybeSend + 'static, ) -> Task<A>
where T: MaybeSend + 'static, E: MaybeSend + 'static, A: MaybeSend + 'static,

Executes a new Task after this one, only when it succeeds with an Ok value.

The success value is provided to the closure to create the subsequent Task.

Trait Implementations§

Source§

impl<T> From<()> for Task<T>

Source§

fn from(_value: ()) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<T> Freeze for Task<T>

§

impl<T> !RefUnwindSafe for Task<T>

§

impl<T> Send for Task<T>

§

impl<T> !Sync for Task<T>

§

impl<T> Unpin for Task<T>

§

impl<T> !UnwindSafe for Task<T>

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<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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<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.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSend for T
where T: Send,

§

impl<T> MaybeSendSync for T