pub struct ForNodeIR<T: ConvertInfo> {
pub source: T::JsExpression,
pub parse_result: ForParseResult<T>,
pub child: Box<IRNode<T>>,
pub is_stable: bool,
pub fragment_flag: PatchFlag,
pub key: Option<T::JsExpression>,
}
Fields§
§source: T::JsExpression
§parse_result: ForParseResult<T>
§child: Box<IRNode<T>>
§is_stable: bool
§fragment_flag: PatchFlag
§key: Option<T::JsExpression>
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for ForNodeIR<T>
impl<T> RefUnwindSafe for ForNodeIR<T>where
<T as ConvertInfo>::JsExpression: RefUnwindSafe,
<T as ConvertInfo>::CommentType: RefUnwindSafe,
<T as ConvertInfo>::TextType: RefUnwindSafe,
<T as ConvertInfo>::IfBranchType: RefUnwindSafe,
<T as ConvertInfo>::StrType: RefUnwindSafe,
impl<T> Send for ForNodeIR<T>where
<T as ConvertInfo>::JsExpression: Send,
<T as ConvertInfo>::CommentType: Send,
<T as ConvertInfo>::TextType: Send,
<T as ConvertInfo>::IfBranchType: Send,
<T as ConvertInfo>::StrType: Send,
impl<T> Sync for ForNodeIR<T>where
<T as ConvertInfo>::JsExpression: Sync,
<T as ConvertInfo>::CommentType: Sync,
<T as ConvertInfo>::TextType: Sync,
<T as ConvertInfo>::IfBranchType: Sync,
<T as ConvertInfo>::StrType: Sync,
impl<T> Unpin for ForNodeIR<T>
impl<T> UnwindSafe for ForNodeIR<T>where
<T as ConvertInfo>::JsExpression: UnwindSafe,
<T as ConvertInfo>::CommentType: UnwindSafe,
<T as ConvertInfo>::TextType: UnwindSafe,
<T as ConvertInfo>::IfBranchType: UnwindSafe,
<T as ConvertInfo>::StrType: 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