acp 0.1.0

An implementation of [access control policy](https://solid.github.io/authorization-panel/acp-specification/) concepts and engine for rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! I define handle and description types for acp matchers.
//!

use rdf_utils::define_handle_and_description_types;

define_handle_and_description_types!(
    /// A struct handle type for [acp matchers](https://solid.github.io/authorization-panel/acp-specification/#matcher).
    ///
    /// > Instances of the Matcher class are descriptions of matching Contexts.
    ///
    HMatcher;
    /// A type alias for acp matcher description.
    DMatcher;
    []
);