pub struct VNodeIR<T: ConvertInfo> {
pub tag: T::JsExpression,
pub props: Option<T::JsExpression>,
pub children: Vec<IRNode<T>>,
pub patch_flag: PatchFlag,
pub dynamic_props: FxHashSet<T::StrType>,
pub directives: Vec<RuntimeDir<T>>,
pub is_block: bool,
pub disable_tracking: bool,
pub is_component: bool,
}
Fields§
§tag: T::JsExpression
§props: Option<T::JsExpression>
§children: Vec<IRNode<T>>
§patch_flag: PatchFlag
§dynamic_props: FxHashSet<T::StrType>
§directives: Vec<RuntimeDir<T>>
§is_block: bool
§disable_tracking: bool
§is_component: bool
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for VNodeIR<T>
impl<T> RefUnwindSafe for VNodeIR<T>where
<T as ConvertInfo>::JsExpression: RefUnwindSafe,
<T as ConvertInfo>::CommentType: RefUnwindSafe,
<T as ConvertInfo>::TextType: RefUnwindSafe,
<T as ConvertInfo>::StrType: RefUnwindSafe,
<T as ConvertInfo>::IfBranchType: RefUnwindSafe,
impl<T> Send for VNodeIR<T>where
<T as ConvertInfo>::JsExpression: Send,
<T as ConvertInfo>::CommentType: Send,
<T as ConvertInfo>::TextType: Send,
<T as ConvertInfo>::StrType: Send,
<T as ConvertInfo>::IfBranchType: Send,
impl<T> Sync for VNodeIR<T>where
<T as ConvertInfo>::JsExpression: Sync,
<T as ConvertInfo>::CommentType: Sync,
<T as ConvertInfo>::TextType: Sync,
<T as ConvertInfo>::StrType: Sync,
<T as ConvertInfo>::IfBranchType: Sync,
impl<T> Unpin for VNodeIR<T>where
<T as ConvertInfo>::JsExpression: Unpin,
<T as ConvertInfo>::CommentType: Unpin,
<T as ConvertInfo>::TextType: Unpin,
<T as ConvertInfo>::StrType: Unpin,
<T as ConvertInfo>::IfBranchType: Unpin,
impl<T> UnwindSafe for VNodeIR<T>where
<T as ConvertInfo>::JsExpression: UnwindSafe,
<T as ConvertInfo>::CommentType: UnwindSafe,
<T as ConvertInfo>::TextType: UnwindSafe,
<T as ConvertInfo>::StrType: UnwindSafe,
<T as ConvertInfo>::IfBranchType: 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