#[repr(C)]pub struct _xmlXPathObject {
pub type_: c_int,
pub nodesetval: *mut c_void,
pub boolval: c_int,
pub floatval: f64,
pub stringval: *mut xmlChar,
pub user: *mut c_void,
pub index: c_int,
pub user2: *mut c_void,
pub index2: c_int,
}Expand description
XPath evaluated object.
Fields§
§type_: c_int§nodesetval: *mut c_void§boolval: c_int§floatval: f64§stringval: *mut xmlChar§user: *mut c_void§index: c_int§user2: *mut c_void§index2: c_intAuto Trait Implementations§
impl !Send for _xmlXPathObject
impl !Sync for _xmlXPathObject
impl Freeze for _xmlXPathObject
impl RefUnwindSafe for _xmlXPathObject
impl Unpin for _xmlXPathObject
impl UnsafeUnpin for _xmlXPathObject
impl UnwindSafe for _xmlXPathObject
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