libnewsboat 2.38.0

Utility libraries used by Newsboat reader
Documentation
1
2
3
4
5
/// An entity that can be matched against a filter expression using `Matcher`.
pub trait Matchable {
    /// Returns the value of the attribute named `attr`, or `None` if there is no such attribute.
    fn attribute_value(&self, attr: &str) -> Option<String>;
}