Struct windows::Data::Xml::Dom::XmlLoadSettings
#[repr(transparent)]pub struct XmlLoadSettings(_);
Expand description
Required features: "Data_Xml_Dom"
Implementations§
§impl XmlLoadSettings
impl XmlLoadSettings
pub fn new() -> Result<Self>
pub fn MaxElementDepth(&self) -> Result<u32>
pub fn SetMaxElementDepth(&self, value: u32) -> Result<()>
pub fn ProhibitDtd(&self) -> Result<bool>
pub fn SetProhibitDtd(&self, value: bool) -> Result<()>
pub fn ResolveExternals(&self) -> Result<bool>
pub fn SetResolveExternals(&self, value: bool) -> Result<()>
pub fn ValidateOnParse(&self) -> Result<bool>
pub fn SetValidateOnParse(&self, value: bool) -> Result<()>
pub fn ElementContentWhiteSpace(&self) -> Result<bool>
pub fn SetElementContentWhiteSpace(&self, value: bool) -> Result<()>
Trait Implementations§
§impl Clone for XmlLoadSettings
impl Clone for XmlLoadSettings
§impl ComInterface for XmlLoadSettings
impl ComInterface for XmlLoadSettings
§const IID: GUID = <IXmlLoadSettings as ::windows_core::ComInterface>::IID
const IID: GUID = <IXmlLoadSettings as ::windows_core::ComInterface>::IID
A unique identifier representing this interface.
fn as_unknown(&self) -> &IUnknown
§impl Debug for XmlLoadSettings
impl Debug for XmlLoadSettings
§impl Interface for XmlLoadSettings
impl Interface for XmlLoadSettings
type Vtable = IXmlLoadSettings_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 PartialEq<XmlLoadSettings> for XmlLoadSettings
impl PartialEq<XmlLoadSettings> for XmlLoadSettings
impl Eq for XmlLoadSettings
impl Send for XmlLoadSettings
impl Sync for XmlLoadSettings
Auto Trait Implementations§
impl RefUnwindSafe for XmlLoadSettings
impl Unpin for XmlLoadSettings
impl UnwindSafe for XmlLoadSettings
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