Trait browser_window::Property
source · pub trait Property<G, S> {
// Required methods
fn get(&self) -> G;
fn set(&self, value: S);
}
Expand description
A property is something that has a setter and a getter.
pub trait Property<G, S> {
// Required methods
fn get(&self) -> G;
fn set(&self, value: S);
}
A property is something that has a setter and a getter.