bitflags!{/// The permissions of the license.
pubstructPermissions: u8 {/// May be used for commercial purposes.
const COMMERCIAL_USE = 0b_0000_0001;
/// May be distributed.
const DISTRIBUTION = 0b_0000_0010;
/// May be modified.
const MODIFICATION = 0b_0000_0100;
/// Provides an express grant of patent rights from contributors.
const PATENT_RIGHTS = 0b_0000_1000;
/// May be used for private purposes.
const PRIVATE_USE = 0b_0001_0000;
}}