pub enum TemplateAttribute {
Static {
name: &'static str,
value: &'static str,
namespace: Option<&'static str>,
},
Dynamic {
id: usize,
},
}
Expand description
An attribute of the TemplateNode, created at compile time
Variants§
Static
This attribute is entirely known at compile time, enabling
Fields
§
name: &'static str
The name of this attribute.
For example, the href
attribute in href="https://example.com"
, would have the name “href”
Dynamic
The attribute in this position is actually determined dynamically at runtime
This is the index into the dynamic_attributes field on the container VNode
Trait Implementations§
source§impl Debug for TemplateAttribute
impl Debug for TemplateAttribute
source§impl Hash for TemplateAttribute
impl Hash for TemplateAttribute
source§impl Ord for TemplateAttribute
impl Ord for TemplateAttribute
source§fn cmp(&self, other: &TemplateAttribute) -> Ordering
fn cmp(&self, other: &TemplateAttribute) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for TemplateAttribute
impl PartialEq for TemplateAttribute
source§impl PartialOrd for TemplateAttribute
impl PartialOrd for TemplateAttribute
impl Eq for TemplateAttribute
impl StructuralPartialEq for TemplateAttribute
Auto Trait Implementations§
impl Freeze for TemplateAttribute
impl RefUnwindSafe for TemplateAttribute
impl Send for TemplateAttribute
impl Sync for TemplateAttribute
impl Unpin for TemplateAttribute
impl UnwindSafe for TemplateAttribute
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> InitializeFromFunction<T> for T
impl<T> InitializeFromFunction<T> for T
source§fn initialize_from_function(f: fn() -> T) -> T
fn initialize_from_function(f: fn() -> T) -> T
Create an instance of this type from an initialization function
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<Ret> SpawnIfAsync<(), Ret> for Ret
impl<Ret> SpawnIfAsync<(), Ret> for Ret
source§impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
source§fn super_from(input: T) -> O
fn super_from(input: T) -> O
Convert from a type to another type.
source§impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
source§fn super_into(self) -> O
fn super_into(self) -> O
Convert from a type to another type.