Struct sauron::prelude::Effects

source ·
pub struct Effects<MSG, XMSG> {
    pub local: Vec<Task<MSG>, Global>,
    pub external: Vec<Task<XMSG>, Global>,
    /* private fields */
}
Expand description

Effects is a convenient way to group Msg for component to execute subsequent updates based on certain conditions. This can be used for doing animation and incremental changes to the view to provide an effect of transition or animation.

Effects contains 2 types of Messages. The local messages which will be executed in its own component on the next update loop. The other type is the external effects which are Messages that are sent to the parent Component in response to an event that has been triggerred.

Fields§

§local: Vec<Task<MSG>, Global>

Messages that will be executed locally in the Component

§external: Vec<Task<XMSG>, Global>

effects that will be executed on the parent Component which instantiate this component

Implementations§

source§

impl<MSG, XMSG> Effects<MSG, XMSG>where MSG: 'static,

source

pub fn new( local: impl IntoIterator<Item = MSG>, external: impl IntoIterator<Item = XMSG> ) -> Effects<MSG, XMSG>where XMSG: 'static,

create a new Effects with local and external expects respectively

source

pub fn with_async<F, FX>( local: impl IntoIterator<Item = F>, external: impl IntoIterator<Item = FX> ) -> Effects<MSG, XMSG>where F: Future<Output = MSG> + 'static, FX: Future<Output = XMSG> + 'static, XMSG: 'static,

Create a new Effects with local and external futures that can resolve to MSG and XMSG respectively

source

pub fn with_local(local: impl IntoIterator<Item = MSG>) -> Effects<MSG, XMSG>

Create an Effects with local messages that will be executed on the next update loop on this Component

source

pub fn with_local_async<F>( local: impl IntoIterator<Item = F> ) -> Effects<MSG, XMSG>where F: Future<Output = MSG> + 'static,

Create an Effects with local message that will can resolved into MSG, it will be executed on the next update loop on the component it is being returned

source

pub fn with_external( external: impl IntoIterator<Item = XMSG> ) -> Effects<MSG, XMSG>where XMSG: 'static,

Create an Effects with extern messages that will be executed on the parent Component

source

pub fn with_external_async<F>( external: impl IntoIterator<Item = F> ) -> Effects<MSG, XMSG>where F: Future<Output = XMSG> + 'static, XMSG: 'static,

Create an Effects with external messages that will can be resolved into an XMSG, this will be dispatch in the next Component update

source

pub fn none() -> Effects<MSG, XMSG>

Create and empty Effects

source

pub fn map_msg<F, MSG2>(self, f: F) -> Effects<MSG2, XMSG>where F: Fn(MSG) -> MSG2 + Clone + 'static, MSG2: 'static,

Map the local messages of this Effects such that MSG will be transposed into MSG2 with the use of the mapping function f.

The external messages stays the same.

source

pub fn map_external<F, XMSG2>(self, f: F) -> Effects<MSG, XMSG2>where F: Fn(XMSG) -> XMSG2 + Clone + 'static, XMSG: 'static, XMSG2: 'static,

Map the external messages of this Effects such that XMSG will be transposed into XMSG2 with the use of the mapping function f

source

pub fn localize<F, XMSG2>(self, f: F) -> Effects<XMSG, XMSG2>where F: Fn(MSG) -> XMSG + Clone + 'static, XMSG: 'static, XMSG2: 'static,

derives an Effects which contains only local effects by transforming the external messages and mapping them with function f such that they can be of the same type as local effects them merge them together into local effects.

source

pub fn append_local( self, local: impl IntoIterator<Item = MSG> ) -> Effects<MSG, XMSG>

Append this msgs to the local effects

source

pub fn no_render(self) -> Effects<MSG, XMSG>

Modify the Effect such that it will not do an update on the view when it is executed

source

pub fn measure(self) -> Effects<MSG, XMSG>

Modify the Effect such that it will log measurement when it is executed

source

pub fn measure_with_name(self, name: &str) -> Effects<MSG, XMSG>

Modify the Effect such that it will log measurement tag with the name supplied

source

pub fn batch( all_effects: impl IntoIterator<Item = Effects<MSG, XMSG>> ) -> Effects<MSG, XMSG>

Merge all the internal objects of this Vec of Effects to produce only one.

source

pub fn extend( self, local: impl IntoIterator<Item = MSG>, external: impl IntoIterator<Item = XMSG> ) -> Effects<MSG, XMSG>where XMSG: 'static,

Extern the local and external MSG of this Effect

Trait Implementations§

source§

impl<APP, MSG> From<Effects<MSG, ()>> for Cmd<APP, MSG>where MSG: 'static, APP: Application<MSG> + 'static,

source§

fn from(effects: Effects<MSG, ()>) -> Cmd<APP, MSG>

Convert Effects that has only follow ups

source§

impl<MSG, XMSG> From<Task<MSG>> for Effects<MSG, XMSG>

source§

fn from(task: Task<MSG>) -> Effects<MSG, XMSG>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<MSG, XMSG> !RefUnwindSafe for Effects<MSG, XMSG>

§

impl<MSG, XMSG> !Send for Effects<MSG, XMSG>

§

impl<MSG, XMSG> !Sync for Effects<MSG, XMSG>

§

impl<MSG, XMSG> Unpin for Effects<MSG, XMSG>

§

impl<MSG, XMSG> !UnwindSafe for Effects<MSG, XMSG>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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.

source§

impl<T, U> Into<U> for Twhere 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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.