bitflags!{/// The limitations of the license.
pubstructLimitations: u8 {/// Includes a limitation of liability.
const NO_LIABILITY = 0b00001;
/// Does not grant trademark rights.
const NO_TRADEMARK_RIGHTS = 0b00010;
/// Does not provide any warranty.
const NO_WARRANTY = 0b00100;
}}