[][src]Struct drying_paint::Watched

pub struct Watched<T> { /* fields omitted */ }

This represents some value which will be interesting to watch. Watcher functions that reference this value will be re-run when this value changes.

Methods

impl<T> Watched<T>[src]

pub fn new(value: T) -> Self[src]

Create a new watched value.

impl<T: PartialEq> Watched<T>[src]

pub fn set_if_neq(wrapper: &mut Watched<T>, value: T)[src]

This function provides a way to set a value for a watched value only if is has changed. This is useful for cases where setting a value would otherwise cause an infinite loop.

Examples

The following example uses the watch system to keep two variables in sync. This would normally cause an infinite loop as each update of one would cause the other one to re-evaluate. However using set_if_neq allows it to detect that the value is the same and stop propogating.

#[derive(Default)]
struct KeepBalanced {
    left: Watched<i32>,
    right: Watched<i32>,
}
impl WatcherInit for KeepBalanced {
    fn init(watcher: &mut WatcherMeta<Self>) {
        watcher.watch(|root| {
            Watched::set_if_neq(&mut root.left, *root.right);
        });
        watcher.watch(|root| {
            Watched::set_if_neq(&mut root.right, *root.left);
        });
    }
}
fn main() {
    let mut ctx = WatchContext::new();
    ctx.set_frame_limit(Some(100));
    ctx.with(|| {
        let mut obj = Watcher::<KeepBalanced>::new();
        *obj.data_mut().left = 68;
        WatchContext::update_current();
        assert_eq!(*obj.data().right, 68);
    });
}

Trait Implementations

impl<T: Clone> Clone for Watched<T>[src]

impl<T: Debug> Debug for Watched<T>[src]

impl<T: Default> Default for Watched<T>[src]

impl<T> Deref for Watched<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T> DerefMut for Watched<T>[src]

impl<T: Display> Display for Watched<T>[src]

impl<T: Eq> Eq for Watched<T>[src]

impl<T: Ord> Ord for Watched<T>[src]

impl<T: PartialEq> PartialEq<Watched<T>> for Watched<T>[src]

impl<T: PartialOrd> PartialOrd<Watched<T>> for Watched<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Watched<T>

impl<T> !Send for Watched<T>

impl<T> !Sync for Watched<T>

impl<T> Unpin for Watched<T> where
    T: Unpin

impl<T> !UnwindSafe for Watched<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.