forked from parcel-bundler/lightningcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalpha.rs
More file actions
24 lines (21 loc) · 807 Bytes
/
alpha.rs
File metadata and controls
24 lines (21 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use cssparser::*;
use crate::traits::{Parse, ToCss};
use crate::printer::Printer;
use super::percentage::NumberOrPercentage;
use crate::error::{ParserError, PrinterError};
/// https://www.w3.org/TR/2021/WD-css-color-4-20210601/#typedef-alpha-value
#[derive(Debug, Clone, PartialEq)]
pub struct AlphaValue(pub f32);
impl<'i> Parse<'i> for AlphaValue {
fn parse<'t>(input: &mut Parser<'i, 't>) -> Result<Self, ParseError<'i, ParserError<'i>>> {
match NumberOrPercentage::parse(input)? {
NumberOrPercentage::Percentage(percent) => Ok(AlphaValue(percent.0)),
NumberOrPercentage::Number(number) => Ok(AlphaValue(number))
}
}
}
impl ToCss for AlphaValue {
fn to_css<W>(&self, dest: &mut Printer<W>) -> Result<(), PrinterError> where W: std::fmt::Write {
self.0.to_css(dest)
}
}