#[repr(C)]pub struct _xsltStackElem {
pub next: *mut _xsltStackElem,
pub comp: *mut c_void,
pub computed: c_int,
pub name: *const xmlChar,
pub nameURI: *const xmlChar,
pub select: *const xmlChar,
pub tree: *mut _xmlNode,
pub value: *mut _xmlXPathObject,
pub fragment: *mut _xmlDoc,
pub level: c_int,
pub context: *mut _xsltTransformContext,
pub flags: c_int,
}Expand description
XSLT stack element (variable/parameter binding).
§ABI
Layout mirrors upstream struct _xsltStackElem (xsltInternals.h).
Fields§
§next: *mut _xsltStackElem§comp: *mut c_void§computed: c_int§name: *const xmlChar§nameURI: *const xmlChar§select: *const xmlChar§tree: *mut _xmlNode§value: *mut _xmlXPathObject§fragment: *mut _xmlDoc§level: c_int§context: *mut _xsltTransformContext§flags: c_intAuto 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