#[repr(C)]pub struct _xsltStackElem {
pub next: *mut _xsltStackElem,
pub style: *mut _xsltStylesheet,
pub inst: *mut _xmlNode,
pub name: *const xmlChar,
pub nameURI: *const xmlChar,
pub select: *const xmlChar,
pub comp: *mut _xmlXPathObject,
pub tree: *mut _xmlNode,
pub value: *mut _xmlXPathObject,
pub flags: c_int,
pub level: c_int,
pub compCtxt: c_int,
}Expand description
XSLT stack element (variable/parameter binding).
§UPSTREAM-PARITY
Layout matches upstream _xsltStackElem from xsltInternals.h.
Fields§
§next: *mut _xsltStackElemNext stack element.
style: *mut _xsltStylesheetOwning stylesheet.
inst: *mut _xmlNodeThe xsl:variable or xsl:param instruction node.
name: *const xmlCharVariable/parameter name.
nameURI: *const xmlCharVariable/parameter namespace URI.
select: *const xmlCharSelect expression.
comp: *mut _xmlXPathObjectCompiled select expression.
tree: *mut _xmlNodeTree content (for inline content).
value: *mut _xmlXPathObjectEvaluated value.
flags: c_intFlags.
level: c_intScope level.
compCtxt: c_intWhether this is a compiled context.
Auto Trait Implementations§
impl !Send for _xsltStackElem
impl !Sync for _xsltStackElem
impl Freeze for _xsltStackElem
impl RefUnwindSafe for _xsltStackElem
impl Unpin for _xsltStackElem
impl UnsafeUnpin for _xsltStackElem
impl UnwindSafe for _xsltStackElem
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