/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
//! Generic types for the column properties. usecrate::derives::*;
/// A generic type for `column-count` values. #[derive(
Animate,
Clone,
ComputeSquaredDistance,
Copy,
Debug,
MallocSizeOf,
Parse,
PartialEq,
SpecifiedValueInfo,
ToAnimatedValue,
ToAnimatedZero,
ToComputedValue,
ToCss,
ToResolvedValue,
ToShmem,
ToTyped,
)] #[repr(u8)] #[typed(todo_derive_fields)] pubenum GenericColumnCount<PositiveInteger> { /// A positive integer.
Integer(PositiveInteger), /// The keyword `auto`. #[animation(error)]
Auto,
}
pubuseself::GenericColumnCount as ColumnCount; impl<I> ColumnCount<I> { /// Returns whether this value is `auto`. #[inline] pubfn is_auto(&self) -> bool {
matches!(self, ColumnCount::Auto)
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.