Trait IIndexableContent_Impl
pub trait IIndexableContent_Impl: IUnknownImpl {
// Required methods
fn Id(&self) -> Result<HSTRING>;
fn SetId(&self, value: &HSTRING) -> Result<()>;
fn Properties(&self) -> Result<IMap<HSTRING, IInspectable>>;
fn Stream(&self) -> Result<IRandomAccessStream>;
fn SetStream(&self, value: Ref<'_, IRandomAccessStream>) -> Result<()>;
fn StreamContentType(&self) -> Result<HSTRING>;
fn SetStreamContentType(&self, value: &HSTRING) -> Result<()>;
}
Required Methods§
fn Id(&self) -> Result<HSTRING>
fn SetId(&self, value: &HSTRING) -> Result<()>
fn Properties(&self) -> Result<IMap<HSTRING, IInspectable>>
fn Stream(&self) -> Result<IRandomAccessStream>
fn SetStream(&self, value: Ref<'_, IRandomAccessStream>) -> Result<()>
fn StreamContentType(&self) -> Result<HSTRING>
fn SetStreamContentType(&self, value: &HSTRING) -> 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.