#[repr(C)]pub struct _xsltKeyDef {
pub next: *mut _xsltKeyDef,
pub style: *mut _xsltStylesheet,
pub inst: *mut _xmlNode,
pub name: *const xmlChar,
pub match: *const xmlChar,
pub use: *const xmlChar,
pub depth: c_int,
}Expand description
Fields§
§next: *mut _xsltKeyDefNext key definition.
style: *mut _xsltStylesheetOwning stylesheet.
inst: *mut _xmlNodeThe xsl:key instruction node.
name: *const xmlCharKey name.
match: *const xmlCharMatch pattern.
use: *const xmlCharUse expression.
depth: c_intImport depth.
Auto Trait Implementations§
impl !Send for _xsltKeyDef
impl !Sync for _xsltKeyDef
impl Freeze for _xsltKeyDef
impl RefUnwindSafe for _xsltKeyDef
impl Unpin for _xsltKeyDef
impl UnsafeUnpin for _xsltKeyDef
impl UnwindSafe for _xsltKeyDef
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