pub struct SaxAttr {
pub local: String,
pub prefix: Option<String>,
pub uri: Option<String>,
pub value: String,
pub value_input_off: Option<usize>,
}Expand description
Attribute as delivered to startElementNs.
Fields§
§local: String§prefix: Option<String>§uri: Option<String>§value: String§value_input_off: Option<usize>Byte offset in the original input of the first value character (after the quote).
Used only to reproduce xmllint’s %.4s debug print.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SaxAttr
impl RefUnwindSafe for SaxAttr
impl Send for SaxAttr
impl Sync for SaxAttr
impl Unpin for SaxAttr
impl UnsafeUnpin for SaxAttr
impl UnwindSafe for SaxAttr
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