#[repr(C)]pub struct _xsltDecimalFormat {
pub next: *mut _xsltDecimalFormat,
pub name: *const xmlChar,
pub digit: *mut xmlChar,
pub patternSeparator: *mut xmlChar,
pub decimalPoint: *mut xmlChar,
pub groupingSeparator: *mut xmlChar,
pub infinity: *mut xmlChar,
pub minusSign: *mut xmlChar,
pub NaN: *mut xmlChar,
pub percent: *mut xmlChar,
pub perMille: *mut xmlChar,
pub zeroDigit: *mut xmlChar,
}Expand description
XSLT decimal format definition.
§UPSTREAM-PARITY
Layout matches upstream _xsltDecimalFormat from xsltInternals.h.
Fields§
§next: *mut _xsltDecimalFormatNext decimal format.
name: *const xmlCharFormat name (NULL = default).
digit: *mut xmlCharDigit character.
patternSeparator: *mut xmlCharPattern separator character.
decimalPoint: *mut xmlCharDecimal point character.
groupingSeparator: *mut xmlCharGrouping separator character.
infinity: *mut xmlCharInfinity string.
minusSign: *mut xmlCharMinus sign character.
NaN: *mut xmlCharNaN string.
percent: *mut xmlCharPercent character.
perMille: *mut xmlCharPer-mille character.
zeroDigit: *mut xmlCharZero digit character.
Auto Trait Implementations§
impl !Send for _xsltDecimalFormat
impl !Sync for _xsltDecimalFormat
impl Freeze for _xsltDecimalFormat
impl RefUnwindSafe for _xsltDecimalFormat
impl Unpin for _xsltDecimalFormat
impl UnsafeUnpin for _xsltDecimalFormat
impl UnwindSafe for _xsltDecimalFormat
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