pub enum ValueKind {
Content {
mode: ContentMode,
},
Delimiter,
CSName,
Dimension,
Integer,
KeyVal,
Column,
Star,
}Variants§
Implementations§
Source§impl ValueKind
impl ValueKind
pub const fn is_content(&self) -> bool
pub const fn is_delimiter(&self) -> bool
pub const fn is_cs_name(&self) -> bool
pub const fn is_dimension(&self) -> bool
pub const fn is_integer(&self) -> bool
pub const fn is_keyval(&self) -> bool
pub const fn is_column(&self) -> bool
pub const fn is_star(&self) -> bool
pub const fn content_mode(&self) -> Option<ContentMode>
Trait Implementations§
impl Copy for ValueKind
impl Eq for ValueKind
impl StructuralPartialEq for ValueKind
Auto Trait Implementations§
impl Freeze for ValueKind
impl RefUnwindSafe for ValueKind
impl Send for ValueKind
impl Sync for ValueKind
impl Unpin for ValueKind
impl UnsafeUnpin for ValueKind
impl UnwindSafe for ValueKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.