windows::Storage::Streams

Trait IPropertySetSerializer_Impl

pub trait IPropertySetSerializer_Impl: IUnknownImpl {
    // Required methods
    fn Serialize(&self, propertySet: Ref<'_, IPropertySet>) -> Result<IBuffer>;
    fn Deserialize(
        &self,
        propertySet: Ref<'_, IPropertySet>,
        buffer: Ref<'_, IBuffer>,
    ) -> Result<()>;
}

Required Methods§

fn Serialize(&self, propertySet: Ref<'_, IPropertySet>) -> Result<IBuffer>

fn Deserialize( &self, propertySet: Ref<'_, IPropertySet>, buffer: Ref<'_, IBuffer>, ) -> 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.

Implementors§