data_privacy 0.11.0

Data annotation and redaction system providing a robust way to manipulate sensitive information.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

use data_privacy::taxonomy;

#[taxonomy(example)]
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub enum ExampleTaxonomy {
    PersonallyIdentifiableInformation,
    OrganizationallyIdentifiableInformation,
}