mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-22 02:23:05 +00:00
16 lines
557 B
Rust
16 lines
557 B
Rust
use crate::{ElementId, VNode};
|
|
use std::cell::Cell;
|
|
|
|
/// A list of VNodes with no single root.
|
|
pub struct VFragment<'src> {
|
|
/// The key of the fragment to be used during keyed diffing.
|
|
pub key: Option<&'src str>,
|
|
|
|
/// The [`ElementId`] of the placeholder if it exists
|
|
pub placeholder: Cell<Option<ElementId>>,
|
|
|
|
/// Fragments can never have zero children. Enforced by NodeFactory.
|
|
///
|
|
/// You *can* make a fragment with no children, but it's not a valid fragment and your VDom will panic.
|
|
pub children: &'src [VNode<'src>],
|
|
}
|