pub type NonNegativeLengthOrAuto = LengthPercentageOrAuto<NonNegativeLength>;Expand description
Either a non-negative <length> or the auto keyword.
Aliased Type§
#[repr(C, u8)]pub enum NonNegativeLengthOrAuto {
LengthPercentage(NonNegative<Length>),
Auto,
}