Struct iced_futures::Runtime
source · pub struct Runtime<Executor, Sender, Message> { /* private fields */ }
Expand description
Implementations§
source§impl<Executor, Sender, Message> Runtime<Executor, Sender, Message>where
Executor: Executor,
Sender: Sink<Message, Error = SendError> + Unpin + MaybeSend + Clone + 'static,
Message: MaybeSend + 'static,
impl<Executor, Sender, Message> Runtime<Executor, Sender, Message>where Executor: Executor, Sender: Sink<Message, Error = SendError> + Unpin + MaybeSend + Clone + 'static, Message: MaybeSend + 'static,
sourcepub fn enter<R>(&self, f: impl FnOnce() -> R) -> R
pub fn enter<R>(&self, f: impl FnOnce() -> R) -> R
Runs the given closure inside the Executor
of the Runtime
.
See Executor::enter
to learn more.
sourcepub fn track(
&mut self,
recipes: impl IntoIterator<Item = Box<dyn Recipe<Output = Message>>>
)
pub fn track( &mut self, recipes: impl IntoIterator<Item = Box<dyn Recipe<Output = Message>>> )
Tracks a [Subscription
] in the Runtime
.
It will spawn new streams or close old ones as necessary! See
Tracker::update
to learn more about this!
sourcepub fn broadcast(&mut self, event: Event, status: Status)
pub fn broadcast(&mut self, event: Event, status: Status)
Broadcasts an event to all the subscriptions currently alive in the
Runtime
.
See Tracker::broadcast
to learn more.
Trait Implementations§
Auto Trait Implementations§
impl<Executor, Sender, Message> !RefUnwindSafe for Runtime<Executor, Sender, Message>
impl<Executor, Sender, Message> Send for Runtime<Executor, Sender, Message>where Executor: Send, Message: Send, Sender: Send,
impl<Executor, Sender, Message> Sync for Runtime<Executor, Sender, Message>where Executor: Sync, Message: Sync, Sender: Sync,
impl<Executor, Sender, Message> Unpin for Runtime<Executor, Sender, Message>where Executor: Unpin, Message: Unpin, Sender: Unpin,
impl<Executor, Sender, Message> !UnwindSafe for Runtime<Executor, Sender, Message>
Blanket Implementations§
source§impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for Swhere
T: Real + Zero + Arithmetics + Clone,
Swp: WhitePoint<T>,
Dwp: WhitePoint<T>,
D: AdaptFrom<S, Swp, Dwp, T>,
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for Swhere T: Real + Zero + Arithmetics + Clone, Swp: WhitePoint<T>, Dwp: WhitePoint<T>, D: AdaptFrom<S, Swp, Dwp, T>,
source§fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<T>,
fn adapt_into_using<M>(self, method: M) -> Dwhere M: TransformMatrix<T>,
Convert the source color to the destination color using the specified
method.
source§fn adapt_into(self) -> D
fn adapt_into(self) -> D
Convert the source color to the destination color using the bradford
method by default.
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
source§impl<T> FromAngle<T> for T
impl<T> FromAngle<T> for T
source§fn from_angle(angle: T) -> T
fn from_angle(angle: T) -> T
Performs a conversion from
angle
.source§impl<T, U> FromStimulus<U> for Twhere
U: IntoStimulus<T>,
impl<T, U> FromStimulus<U> for Twhere U: IntoStimulus<T>,
source§fn from_stimulus(other: U) -> T
fn from_stimulus(other: U) -> T
Converts
other
into Self
, while performing the appropriate scaling,
rounding and clamping.source§impl<T, U> IntoAngle<U> for Twhere
U: FromAngle<T>,
impl<T, U> IntoAngle<U> for Twhere U: FromAngle<T>,
source§fn into_angle(self) -> U
fn into_angle(self) -> U
Performs a conversion into
T
.source§impl<T, U> IntoColor<U> for Twhere
U: FromColor<T>,
impl<T, U> IntoColor<U> for Twhere U: FromColor<T>,
source§fn into_color(self) -> U
fn into_color(self) -> U
Convert into T with values clamped to the color defined bounds Read more
source§impl<T, U> IntoColorUnclamped<U> for Twhere
U: FromColorUnclamped<T>,
impl<T, U> IntoColorUnclamped<U> for Twhere U: FromColorUnclamped<T>,
source§fn into_color_unclamped(self) -> U
fn into_color_unclamped(self) -> U
Convert into T. The resulting color might be invalid in its color space Read more
source§impl<T> IntoStimulus<T> for T
impl<T> IntoStimulus<T> for T
source§fn into_stimulus(self) -> T
fn into_stimulus(self) -> T
Converts
self
into T
, while performing the appropriate scaling,
rounding and clamping.source§impl<T, U> TryIntoColor<U> for Twhere
U: TryFromColor<T>,
impl<T, U> TryIntoColor<U> for Twhere U: TryFromColor<T>,
source§fn try_into_color(self) -> Result<U, OutOfBounds<U>>
fn try_into_color(self) -> Result<U, OutOfBounds<U>>
Convert into T, returning ok if the color is inside of its defined
range, otherwise an
OutOfBounds
error is returned which contains
the unclamped color. Read more