Enum gtk::CssSectionType 
source · [−]#[non_exhaustive]
pub enum CssSectionType {
    Document,
    Import,
    ColorDefinition,
    BindingSet,
    Ruleset,
    Selector,
    Declaration,
    Value,
    Keyframes,
    // some variants omitted
}Expand description
The different types of sections indicate parts of a CSS document as parsed by GTK’s CSS parser. They are oriented towards the CSS Grammar, but may contain extensions.
More types might be added in the future as the parser incorporates more features.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Document
The section describes a complete document.
This section time is the only one where CssSection::parent()
might return None.
Import
The section defines an import rule.
ColorDefinition
The section defines a color. This is a GTK extension to CSS.
BindingSet
The section defines a binding set. This is a GTK extension to CSS.
Ruleset
The section defines a CSS ruleset.
Selector
The section defines a CSS selector.
Declaration
The section defines the declaration of a CSS variable.
Value
The section defines the value of a CSS declaration.
Keyframes
The section defines keyframes. See CSS Animations for details. Since 3.6
Trait Implementations
sourceimpl Clone for CssSectionType
 
impl Clone for CssSectionType
sourcefn clone(&self) -> CssSectionType
 
fn clone(&self) -> CssSectionType
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
 
const fn clone_from(&mut self, source: &Self)
source. Read moresourceimpl Debug for CssSectionType
 
impl Debug for CssSectionType
sourceimpl Display for CssSectionType
 
impl Display for CssSectionType
sourceimpl<'a> FromValue<'a> for CssSectionType
 
impl<'a> FromValue<'a> for CssSectionType
type Checker = GenericValueTypeChecker<CssSectionType>
type Checker = GenericValueTypeChecker<CssSectionType>
sourceunsafe fn from_value(value: &'a Value) -> Self
 
unsafe fn from_value(value: &'a Value) -> Self
Value. Read moresourceimpl Hash for CssSectionType
 
impl Hash for CssSectionType
sourceimpl Ord for CssSectionType
 
impl Ord for CssSectionType
sourcefn cmp(&self, other: &CssSectionType) -> Ordering
 
fn cmp(&self, other: &CssSectionType) -> Ordering
1.21.0 · sourceconst fn max(self, other: Self) -> Self
 
const fn max(self, other: Self) -> Self
1.21.0 · sourceconst fn min(self, other: Self) -> Self
 
const fn min(self, other: Self) -> Self
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
    Self: PartialOrd<Self>,
 
const fn clamp(self, min: Self, max: Self) -> Selfwhere
    Self: PartialOrd<Self>,
sourceimpl PartialEq<CssSectionType> for CssSectionType
 
impl PartialEq<CssSectionType> for CssSectionType
sourcefn eq(&self, other: &CssSectionType) -> bool
 
fn eq(&self, other: &CssSectionType) -> bool
sourceimpl PartialOrd<CssSectionType> for CssSectionType
 
impl PartialOrd<CssSectionType> for CssSectionType
sourcefn partial_cmp(&self, other: &CssSectionType) -> Option<Ordering>
 
fn partial_cmp(&self, other: &CssSectionType) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
 
const fn le(&self, other: &Rhs) -> bool
self and other) and is used by the <=
operator. Read moresourceimpl StaticType for CssSectionType
 
impl StaticType for CssSectionType
sourcefn static_type() -> Type
 
fn static_type() -> Type
Self.sourceimpl ToValue for CssSectionType
 
impl ToValue for CssSectionType
sourceimpl ValueType for CssSectionType
 
impl ValueType for CssSectionType
type Type = CssSectionType
type Type = CssSectionType
Type from. Read moreimpl Copy for CssSectionType
impl Eq for CssSectionType
impl StructuralEq for CssSectionType
impl StructuralPartialEq for CssSectionType
Auto Trait Implementations
impl RefUnwindSafe for CssSectionType
impl Send for CssSectionType
impl Sync for CssSectionType
impl Unpin for CssSectionType
impl UnwindSafe for CssSectionType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
sourceimpl<T> StaticTypeExt for Twhere
    T: StaticType,
 
impl<T> StaticTypeExt for Twhere
    T: StaticType,
sourcefn ensure_type()
 
fn ensure_type()
sourceimpl<T> ToClosureReturnValue for Twhere
    T: ToValue,
 
impl<T> ToClosureReturnValue for Twhere
    T: ToValue,
fn to_closure_return_value(&self) -> Option<Value>
sourceimpl<T> ToSendValue for Twhere
    T: Send + ToValue + ?Sized,
 
impl<T> ToSendValue for Twhere
    T: Send + ToValue + ?Sized,
sourcefn to_send_value(&self) -> SendValue
 
fn to_send_value(&self) -> SendValue
SendValue clone of self.