pub trait RxContext<'a, 'c: 'a> {
    fn sub_dag(self) -> RxSubDAG<'a, 'c>;
}
Expand description

Returns a graph you can write. 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

Implementors