[][src]Trait polyhorn_core::UseEffect

pub trait UseEffect<P: ?Sized> where
    P: Platform
{ pub fn use_effect<F>(
        &mut self,
        key: Key,
        conditions: Option<Key>,
        effect: F
    )
    where
        F: FnOnce(&EffectLink<'_, P>) + 'static
; }

Required methods

pub fn use_effect<F>(&mut self, key: Key, conditions: Option<Key>, effect: F) where
    F: FnOnce(&EffectLink<'_, P>) + 'static, 
[src]

Loading content...

Implementors

impl<'a, P: ?Sized> UseEffect<P> for Manager<'a, P> where
    P: Platform
[src]

Loading content...