MutRxContext

Trait MutRxContext 

Source
pub trait MutRxContext<'a, 'c: 'a> {
    // Required method
    fn sub_dag(self) -> RxSubDAG<'a, 'c>;
}
Expand description

Returns a slice of RxDAG you can write variables in.

Note that RxContext and MutRxContext are neither subset nor superset of each other. You can’t read snapshots without recomputing, and you can’t write inputs.

Required Methods§

Source

fn sub_dag(self) -> RxSubDAG<'a, 'c>

Implementors§

Source§

impl<'a, 'c: 'a> MutRxContext<'a, 'c> for &'a RxDAG<'c>