pub trait LiveAtomic {
    // Required method
    fn apply_atomic(
        &self,
        cx: &mut Cx,
        apply_from: ApplyFrom,
        index: usize,
        nodes: &[LiveNode]
    ) -> usize;
}

Required Methods§

source

fn apply_atomic( &self, cx: &mut Cx, apply_from: ApplyFrom, index: usize, nodes: &[LiveNode] ) -> usize

Implementations on Foreign Types§

source§

impl<T, const N: usize> LiveAtomic for [T; N]where T: LiveAtomic,

source§

fn apply_atomic( &self, cx: &mut Cx, from: ApplyFrom, index: usize, nodes: &[LiveNode] ) -> usize

Implementors§