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