license 0.1.1

A license library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
bitflags! {
    /// The limitations of the license.
    pub struct Limitations: u8 {
        /// Includes a limitation of liability.
        const NO_LIABILITY = 0b_0000_0001;
        /// Does not grant trademark rights.
        const NO_TRADEMARK_RIGHTS = 0b_0000_0010;
        /// Does not provide any warranty.
        const NO_WARRANTY = 0b0000_0100;
    }
}