pub trait ID3D10StateBlock_Impl: Sized {
    // Required methods
    fn Capture(&self) -> Result<()>;
    fn Apply(&self) -> Result<()>;
    fn ReleaseAllDeviceObjects(&self) -> Result<()>;
    fn GetDevice(&self) -> Result<ID3D10Device>;
}

Required Methods§

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

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

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

fn GetDevice(&self) -> Result<ID3D10Device>

Object Safety§

This trait is not object safe.

Implementors§