chore: Appease clippy

This commit is contained in:
Mike Welsh 2022-01-10 22:27:42 -08:00
parent 8f53449762
commit 232f1dd120
1 changed files with 7 additions and 0 deletions

View File

@ -19,6 +19,7 @@ const OBJECT_DECLS: &[Declaration] = declare_properties! {
}; };
/// Available cpu architectures /// Available cpu architectures
#[allow(dead_code)]
pub enum CpuArchitecture { pub enum CpuArchitecture {
PowerPc, PowerPc,
X86, X86,
@ -38,6 +39,7 @@ impl fmt::Display for CpuArchitecture {
} }
/// Available type of sandbox for a given SWF /// Available type of sandbox for a given SWF
#[allow(dead_code)]
pub enum SandboxType { pub enum SandboxType {
Remote, Remote,
LocalWithFile, LocalWithFile,
@ -57,6 +59,7 @@ impl fmt::Display for SandboxType {
} }
/// The available host operating systems /// The available host operating systems
#[allow(dead_code)]
pub enum OperatingSystem { pub enum OperatingSystem {
WindowsXp, WindowsXp,
Windows2k, Windows2k,
@ -86,6 +89,7 @@ impl fmt::Display for OperatingSystem {
} }
/// The available player manufacturers /// The available player manufacturers
#[allow(dead_code)]
pub enum Manufacturer { pub enum Manufacturer {
Windows, Windows,
Macintosh, Macintosh,
@ -120,6 +124,7 @@ impl Manufacturer {
} }
/// The language of the host os /// The language of the host os
#[allow(dead_code)]
pub enum Language { pub enum Language {
Czech, Czech,
Danish, Danish,
@ -179,6 +184,7 @@ impl Language {
} }
/// The supported colors of the screen /// The supported colors of the screen
#[allow(dead_code)]
pub enum ScreenColor { pub enum ScreenColor {
Color, Color,
Gray, Gray,
@ -195,6 +201,7 @@ impl fmt::Display for ScreenColor {
} }
} }
/// The type of the player /// The type of the player
#[allow(dead_code)]
pub enum PlayerType { pub enum PlayerType {
StandAlone, StandAlone,
External, External,