pub trait BrushMaybeGetter<P, T> {
    fn maybe_get(&self, p: P) -> Option<T>;
}

Required Methods

Implementors