#[repr(C)]pub struct _xsltSort {
pub next: *mut _xsltSort,
pub inst: *mut _xmlNode,
pub select: *const xmlChar,
pub lang: *const xmlChar,
pub dataType: *const xmlChar,
pub order: *const xmlChar,
pub caseOrder: *const xmlChar,
pub isText: c_int,
pub hasConst: c_int,
pub locale: *mut c_void,
pub style: *mut _xsltStylesheet,
pub depth: c_int,
}Expand description
Fields§
§next: *mut _xsltSortNext sort element.
inst: *mut _xmlNodeThe xsl:sort instruction node.
select: *const xmlCharThe sort key select expression.
lang: *const xmlCharLanguage for sorting.
dataType: *const xmlCharData type (“text” or “number”).
order: *const xmlCharSort order (“ascending” or “descending”).
caseOrder: *const xmlCharCase order (“upper-first” or “lower-first”).
isText: c_intWhether this sort is a text sort.
hasConst: c_intWhether the select expression was a constant.
locale: *mut c_voidLocale information.
style: *mut _xsltStylesheetOwning stylesheet.
depth: c_intImport depth.
Auto Trait Implementations§
impl !Send for _xsltSort
impl !Sync for _xsltSort
impl Freeze for _xsltSort
impl RefUnwindSafe for _xsltSort
impl Unpin for _xsltSort
impl UnsafeUnpin for _xsltSort
impl UnwindSafe for _xsltSort
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