#[repr(C)]pub struct _xsltKeyTable {
pub next: *mut _xsltKeyTable,
pub table: *mut *mut _xmlXPathObject,
pub nb: c_int,
pub max: c_int,
pub name: *mut xmlChar,
pub depth: c_int,
}Expand description
Fields§
§next: *mut _xsltKeyTableNext key table.
table: *mut *mut _xmlXPathObjectTable of XPath object results.
nb: c_intNumber of entries in table.
max: c_intMaximum capacity of table.
name: *mut xmlCharKey name.
depth: c_intImport depth.
Auto Trait Implementations§
impl !Send for _xsltKeyTable
impl !Sync for _xsltKeyTable
impl Freeze for _xsltKeyTable
impl RefUnwindSafe for _xsltKeyTable
impl Unpin for _xsltKeyTable
impl UnsafeUnpin for _xsltKeyTable
impl UnwindSafe for _xsltKeyTable
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