Trait GetSet

Source
pub trait GetSet<T>: Get<T> + Set<T> { }
Expand description

An auto implemented trait for get/set properties.

Implementors§

Source§

impl<T, U> GetSet<T> for U
where U: Get<T> + Set<T>,