Type Alias Namespace

Source
pub type Namespace = GenericAtomIdent<NamespaceStaticSet>;

Aliased Type§

#[repr(transparent)]
pub struct Namespace(pub Atom<NamespaceStaticSet>);

Tuple Fields§

§0: Atom<NamespaceStaticSet>

Trait Implementations§

Source§

impl ToComputedValue for Namespace

Source§

type ComputedValue = GenericAtomIdent<NamespaceStaticSet>

The computed value type we’re going to be converted to.
Source§

fn to_computed_value(&self, _: &Context<'_>) -> Self

Convert a specified value to a computed value, using itself and the data inside the Context.
Source§

fn from_computed_value(other: &Self) -> Self

Convert a computed value to specified value form. Read more
Source§

impl ToResolvedValue for Namespace

Source§

type ResolvedValue = GenericAtomIdent<NamespaceStaticSet>

The resolved value type we’re going to be converted to.
Source§

fn to_resolved_value(self, _: &Context<'_>) -> Self

Convert a resolved value to a resolved value.
Source§

fn from_resolved_value(resolved: Self::ResolvedValue) -> Self

Convert a resolved value to resolved value form.