Enum freya_native_core::node::NodeType
source · pub enum NodeType<V: FromAnyValue = ()> {
Text(String),
Element(ElementNode<V>),
Placeholder,
}
Expand description
A type of node with data specific to the node type.
Variants§
Text(String)
A text node
Element(ElementNode<V>)
An element node
Placeholder
A placeholder node. This can be used as a cheaper placeholder for a node that will be created later
Implementations§
Trait Implementations§
source§impl<V: FromAnyValue> Component for NodeType<V>
impl<V: FromAnyValue> Component for NodeType<V>
source§impl<V: FromAnyValue> From<ElementNode<V>> for NodeType<V>
impl<V: FromAnyValue> From<ElementNode<V>> for NodeType<V>
source§fn from(element: ElementNode<V>) -> Self
fn from(element: ElementNode<V>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<V> Freeze for NodeType<V>
impl<V> RefUnwindSafe for NodeType<V>where
V: RefUnwindSafe,
impl<V> Send for NodeType<V>where
V: Send,
impl<V> Sync for NodeType<V>where
V: Sync,
impl<V> Unpin for NodeType<V>where
V: Unpin,
impl<V> UnwindSafe for NodeType<V>where
V: UnwindSafe,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
§fn super_from(input: T) -> O
fn super_from(input: T) -> O
Convert from a type to another type.
§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>,
§fn super_into(self) -> O
fn super_into(self) -> O
Convert from a type to another type.