[][src]Trait mogwai::view::interface::PatchView

pub trait PatchView<T> {
    pub fn patch<S: Clone + Into<T> + 'static>(
        &mut self,
        rx: Receiver<Patch<S>>
    ); }

PatchViews' children can be manipulated using patch commands sent on a Receiver.

Required methods

pub fn patch<S: Clone + Into<T> + 'static>(&mut self, rx: Receiver<Patch<S>>)[src]

Patch the view using the Patch messages sent on the given Receiver.

Loading content...

Implementors

impl<T, C> PatchView<View<C>> for ViewBuilder<T> where
    T: IsDomNode + AsRef<Node>,
    C: IsDomNode + AsRef<Node>, 
[src]

impl<T, C> PatchView<View<C>> for View<T> where
    T: IsDomNode + AsRef<Node>,
    C: IsDomNode + AsRef<Node>, 
[src]

Loading content...