pub struct VSlotIR<T: ConvertInfo> {
pub stable_slots: Vec<Slot<T>>,
pub alterable_slots: Vec<IRNode<T>>,
pub slot_flag: SlotFlag,
}
Fields§
§stable_slots: Vec<Slot<T>>
stable v-slots declared statically in the template
alterable_slots: Vec<IRNode<T>>
v-slots templates dynamically declared with v-if/v-for
slot_flag: SlotFlag
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for VSlotIR<T>
impl<T> RefUnwindSafe for VSlotIR<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 VSlotIR<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 VSlotIR<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 VSlotIR<T>where
<T as ConvertInfo>::JsExpression: Unpin,
<T as ConvertInfo>::CommentType: Unpin,
<T as ConvertInfo>::TextType: Unpin,
<T as ConvertInfo>::IfBranchType: Unpin,
<T as ConvertInfo>::StrType: Unpin,
impl<T> UnwindSafe for VSlotIR<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