Trait ISyndicationText_Impl
pub trait ISyndicationText_Impl: ISyndicationNode_Impl {
// Required methods
fn Text(&self) -> Result<HSTRING>;
fn SetText(&self, value: &HSTRING) -> Result<()>;
fn Type(&self) -> Result<HSTRING>;
fn SetType(&self, value: &HSTRING) -> Result<()>;
fn Xml(&self) -> Result<XmlDocument>;
fn SetXml(&self, value: Ref<'_, XmlDocument>) -> Result<()>;
}
Required Methods§
fn Text(&self) -> Result<HSTRING>
fn SetText(&self, value: &HSTRING) -> Result<()>
fn Type(&self) -> Result<HSTRING>
fn SetType(&self, value: &HSTRING) -> Result<()>
fn Xml(&self) -> Result<XmlDocument>
fn SetXml(&self, value: Ref<'_, XmlDocument>) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.