pub trait IDirectManipulationCompositor_Impl: Sized {
    // Required methods
    fn AddContent(
        &self,
        content: Option<&IDirectManipulationContent>,
        device: Option<&IUnknown>,
        parentvisual: Option<&IUnknown>,
        childvisual: Option<&IUnknown>,
    ) -> Result<()>;
    fn RemoveContent(
        &self,
        content: Option<&IDirectManipulationContent>,
    ) -> Result<()>;
    fn SetUpdateManager(
        &self,
        updatemanager: Option<&IDirectManipulationUpdateManager>,
    ) -> Result<()>;
    fn Flush(&self) -> Result<()>;
}

Required Methods§

fn AddContent( &self, content: Option<&IDirectManipulationContent>, device: Option<&IUnknown>, parentvisual: Option<&IUnknown>, childvisual: Option<&IUnknown>, ) -> Result<()>

fn RemoveContent( &self, content: Option<&IDirectManipulationContent>, ) -> Result<()>

fn SetUpdateManager( &self, updatemanager: Option<&IDirectManipulationUpdateManager>, ) -> Result<()>

fn Flush(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§