pub struct VNodeCall<'a> {
pub tag: VNodeTag<'a>,
pub props: Option<PropsExpression<'a>>,
pub children: Option<VNodeChildren<'a>>,
pub patch_flag: Option<PatchFlags>,
pub dynamic_props: Option<DynamicProps<'a>>,
pub directives: Option<DirectiveArguments<'a>>,
pub is_block: bool,
pub disable_tracking: bool,
pub is_component: bool,
pub loc: SourceLocation,
}Expand description
VNode call expression
Fields§
§tag: VNodeTag<'a>§props: Option<PropsExpression<'a>>§children: Option<VNodeChildren<'a>>§patch_flag: Option<PatchFlags>§dynamic_props: Option<DynamicProps<'a>>§directives: Option<DirectiveArguments<'a>>§is_block: bool§disable_tracking: bool§is_component: bool§loc: SourceLocationImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for VNodeCall<'a>
impl<'a> !Send for VNodeCall<'a>
impl<'a> !Sync for VNodeCall<'a>
impl<'a> !UnwindSafe for VNodeCall<'a>
impl<'a> Freeze for VNodeCall<'a>
impl<'a> Unpin for VNodeCall<'a>
impl<'a> UnsafeUnpin for VNodeCall<'a>
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