Struct ISAXXMLReader
pub struct ISAXXMLReader(/* private fields */);
Implementations§
§impl ISAXXMLReader
impl ISAXXMLReader
pub unsafe fn getFeature<P0>(&self, pwchname: P0) -> Result<VARIANT_BOOL>where
P0: Param<PCWSTR>,
pub unsafe fn putFeature<P0>(
&self,
pwchname: P0,
vfvalue: VARIANT_BOOL,
) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn getProperty<P0>(&self, pwchname: P0) -> Result<VARIANT>where
P0: Param<PCWSTR>,
pub unsafe fn putProperty<P0>(
&self,
pwchname: P0,
varvalue: &VARIANT,
) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn getEntityResolver(&self) -> Result<ISAXEntityResolver>
pub unsafe fn putEntityResolver<P0>(&self, presolver: P0) -> Result<()>where
P0: Param<ISAXEntityResolver>,
pub unsafe fn getContentHandler(&self) -> Result<ISAXContentHandler>
pub unsafe fn putContentHandler<P0>(&self, phandler: P0) -> Result<()>where
P0: Param<ISAXContentHandler>,
pub unsafe fn getDTDHandler(&self) -> Result<ISAXDTDHandler>
pub unsafe fn putDTDHandler<P0>(&self, phandler: P0) -> Result<()>where
P0: Param<ISAXDTDHandler>,
pub unsafe fn getErrorHandler(&self) -> Result<ISAXErrorHandler>
pub unsafe fn putErrorHandler<P0>(&self, phandler: P0) -> Result<()>where
P0: Param<ISAXErrorHandler>,
pub unsafe fn getBaseURL(&self) -> Result<*mut u16>
pub unsafe fn putBaseURL<P0>(&self, pwchbaseurl: P0) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn getSecureBaseURL(&self) -> Result<*mut u16>
pub unsafe fn putSecureBaseURL<P0>(&self, pwchsecurebaseurl: P0) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn parse(&self, varinput: &VARIANT) -> Result<()>
pub unsafe fn parseURL<P0>(&self, pwchurl: P0) -> Result<()>where
P0: Param<PCWSTR>,
Trait Implementations§
§impl CanInto<ISAXXMLReader> for ISAXXMLFilter
impl CanInto<ISAXXMLReader> for ISAXXMLFilter
§impl CanInto<IUnknown> for ISAXXMLReader
impl CanInto<IUnknown> for ISAXXMLReader
§impl Clone for ISAXXMLReader
impl Clone for ISAXXMLReader
§fn clone(&self) -> ISAXXMLReader
fn clone(&self) -> ISAXXMLReader
Returns a copy 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 more§impl Debug for ISAXXMLReader
impl Debug for ISAXXMLReader
§impl From<&ISAXXMLFilter> for &ISAXXMLReader
impl From<&ISAXXMLFilter> for &ISAXXMLReader
§fn from(value: &ISAXXMLFilter) -> Self
fn from(value: &ISAXXMLFilter) -> Self
Converts to this type from the input type.
§impl From<&ISAXXMLReader> for &IUnknown
impl From<&ISAXXMLReader> for &IUnknown
§fn from(value: &ISAXXMLReader) -> Self
fn from(value: &ISAXXMLReader) -> Self
Converts to this type from the input type.
§impl From<ISAXXMLFilter> for ISAXXMLReader
impl From<ISAXXMLFilter> for ISAXXMLReader
§fn from(value: ISAXXMLFilter) -> Self
fn from(value: ISAXXMLFilter) -> Self
Converts to this type from the input type.
§impl From<ISAXXMLReader> for IUnknown
impl From<ISAXXMLReader> for IUnknown
§fn from(value: ISAXXMLReader) -> Self
fn from(value: ISAXXMLReader) -> Self
Converts to this type from the input type.
§impl Interface for ISAXXMLReader
impl Interface for ISAXXMLReader
§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.
§unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for ISAXXMLReader
impl PartialEq for ISAXXMLReader
impl Eq for ISAXXMLReader
impl StructuralPartialEq for ISAXXMLReader
Auto Trait Implementations§
impl Freeze for ISAXXMLReader
impl RefUnwindSafe for ISAXXMLReader
impl !Send for ISAXXMLReader
impl !Sync for ISAXXMLReader
impl Unpin for ISAXXMLReader
impl UnwindSafe for ISAXXMLReader
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