Struct sauron_core::dom::Effects

source ·
pub struct Effects<MSG, XMSG> {
    pub local: Vec<MSG>,
    pub external: Vec<XMSG>,
    /* 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<MSG>

Messages that will be executed locally in the Component

§external: Vec<XMSG>

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

Implementations§

source§

impl<MSG, XMSG> Effects<MSG, XMSG>

source

pub fn new( local: impl IntoIterator<Item = MSG>, external: impl IntoIterator<Item = XMSG> ) -> Self

create a new Effects with local and external expects respectively

source

pub fn unzip(self) -> (Vec<MSG>, Vec<XMSG>)

split the local and external MSG of this effect

source

pub fn with_local(local: impl IntoIterator<Item = MSG>) -> Self

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

source

pub fn with_external(external: impl IntoIterator<Item = XMSG>) -> Self

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

source

pub fn none() -> Self

Create and empty Effects

source

pub fn map_msg<F, MSG2>(self, f: F) -> Effects<MSG2, XMSG>where F: Fn(MSG) -> 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 + '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>(self, f: F) -> Effects<XMSG, ()>where F: Fn(MSG) -> XMSG + '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>) -> Self

Append this msgs to the local effects

source

pub fn no_render(self) -> Self

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

source

pub fn measure(self) -> Self

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

source

pub fn merge_all(all_effects: Vec<Self>) -> Self

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> ) -> Self

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, ()>) -> Self

Convert Effects that has only follow ups

Auto Trait Implementations§

§

impl<MSG, XMSG> RefUnwindSafe for Effects<MSG, XMSG>where MSG: RefUnwindSafe, XMSG: RefUnwindSafe,

§

impl<MSG, XMSG> Send for Effects<MSG, XMSG>where MSG: Send, XMSG: Send,

§

impl<MSG, XMSG> Sync for Effects<MSG, XMSG>where MSG: Sync, XMSG: Sync,

§

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

§

impl<MSG, XMSG> UnwindSafe for Effects<MSG, XMSG>where MSG: UnwindSafe, XMSG: UnwindSafe,

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.