#[repr(C)]pub struct apr_xml_attr {
pub name: *const c_char,
pub ns: c_int,
pub value: *const c_char,
pub next: *mut apr_xml_attr,
}Expand description
apr_xml_attr: holds a parsed XML attribute
Fields§
§name: *const c_charattribute name
ns: c_intindex into namespace array
value: *const c_charattribute value
next: *mut apr_xml_attrnext attribute
Trait Implementations§
Source§impl Clone for apr_xml_attr
impl Clone for apr_xml_attr
Source§fn clone(&self) -> apr_xml_attr
fn clone(&self) -> apr_xml_attr
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for apr_xml_attr
impl Debug for apr_xml_attr
impl Copy for apr_xml_attr
Auto Trait Implementations§
impl Freeze for apr_xml_attr
impl RefUnwindSafe for apr_xml_attr
impl !Send for apr_xml_attr
impl !Sync for apr_xml_attr
impl Unpin for apr_xml_attr
impl UnwindSafe for apr_xml_attr
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