Trait zng_app::widget::inspector::InspectPropertyPattern

source ·
pub trait InspectPropertyPattern {
    // Required method
    fn matches(&self, args: &dyn PropertyArgs, captured: bool) -> bool;
}
Expand description

Query pattern for the WidgetInfoInspectorExt inspect methods.

Required Methods§

source

fn matches(&self, args: &dyn PropertyArgs, captured: bool) -> bool

Returns true if the pattern includes the property.

Implementations on Foreign Types§

source§

impl<'s> InspectPropertyPattern for &'s str

Matches if the PropertyInfo::name exactly.

source§

fn matches(&self, args: &dyn PropertyArgs, _: bool) -> bool

Implementors§