Struct windows::Data::Xml::Dom::XmlNodeList
#[repr(transparent)]pub struct XmlNodeList(_);
Expand description
Required features: "Data_Xml_Dom"
Implementations§
§impl XmlNodeList
impl XmlNodeList
pub fn IndexOf<P0>(&self, value: P0, index: &mut u32) -> Result<bool>where
P0: TryIntoParam<IXmlNode>,
pub fn IndexOf<P0>(&self, value: P0, index: &mut u32) -> Result<bool>where P0: TryIntoParam<IXmlNode>,
Required features: "Foundation_Collections"
pub fn GetMany(
&self,
startindex: u32,
items: &mut [Option<IXmlNode>]
) -> Result<u32>
pub fn GetMany( &self, startindex: u32, items: &mut [Option<IXmlNode>] ) -> Result<u32>
Required features: "Foundation_Collections"
pub fn Length(&self) -> Result<u32>
pub fn Item(&self, index: u32) -> Result<IXmlNode>
Trait Implementations§
§impl Clone for XmlNodeList
impl Clone for XmlNodeList
§impl ComInterface for XmlNodeList
impl ComInterface for XmlNodeList
§const IID: GUID = <IXmlNodeList as ::windows_core::ComInterface>::IID
const IID: GUID = <IXmlNodeList as ::windows_core::ComInterface>::IID
A unique identifier representing this interface.
fn as_unknown(&self) -> &IUnknown
§impl Debug for XmlNodeList
impl Debug for XmlNodeList
§impl Interface for XmlNodeList
impl Interface for XmlNodeList
type Vtable = IXmlNodeList_Vtbl
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§impl IntoIterator for &XmlNodeList
impl IntoIterator for &XmlNodeList
§type IntoIter = VectorViewIterator<<&XmlNodeList as IntoIterator>::Item>
type IntoIter = VectorViewIterator<<&XmlNodeList as IntoIterator>::Item>
Which kind of iterator are we turning this into?
§impl IntoIterator for XmlNodeList
impl IntoIterator for XmlNodeList
§type IntoIter = VectorViewIterator<<XmlNodeList as IntoIterator>::Item>
type IntoIter = VectorViewIterator<<XmlNodeList as IntoIterator>::Item>
Which kind of iterator are we turning this into?
§impl PartialEq<XmlNodeList> for XmlNodeList
impl PartialEq<XmlNodeList> for XmlNodeList
impl Eq for XmlNodeList
impl Send for XmlNodeList
impl Sync for XmlNodeList
Auto Trait Implementations§
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