mirror of
https://github.com/denoland/deno.git
synced 2025-03-10 06:07:03 -04:00
12 lines
266 B
Rust
12 lines
266 B
Rust
![]() |
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
||
|
|
||
|
use serde::Deserialize;
|
||
|
|
||
|
#[derive(Debug, Deserialize, PartialEq)]
|
||
|
#[serde(rename_all = "camelCase")]
|
||
|
pub enum PredefinedColorSpace {
|
||
|
Srgb,
|
||
|
#[serde(rename = "display-p3")]
|
||
|
DisplayP3,
|
||
|
}
|