[][src]Trait quack::Set

pub trait Set<T> {
    fn set(&mut self, val: T);
}

Set property.

Required methods

fn set(&mut self, val: T)

Sets property value.

Loading content...

Implementations on Foreign Types

impl<'a, T, U> Set<T> for &'a RefCell<U> where
    U: Set<T>, 
[src]

impl<T, U> Set<T> for Rc<RefCell<U>> where
    U: Set<T>, 
[src]

Loading content...

Implementors

Loading content...