acp/model/
matcher.rs

1//! I define handle and description types for acp matchers.
2//!
3
4use rdf_utils::define_handle_and_description_types;
5
6define_handle_and_description_types!(
7    /// A struct handle type for [acp matchers](https://solid.github.io/authorization-panel/acp-specification/#matcher).
8    ///
9    /// > Instances of the Matcher class are descriptions of matching Contexts.
10    ///
11    HMatcher;
12    /// A type alias for acp matcher description.
13    DMatcher;
14    []
15);