pub trait ITuneRequest_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn TuningSpace(&self) -> Result<ITuningSpace>;
    fn Components(&self) -> Result<IComponents>;
    fn Clone(&self) -> Result<ITuneRequest>;
    fn Locator(&self) -> Result<ILocator>;
    fn SetLocator(&self, locator: Option<&ILocator>) -> Result<()>;
}

Required Methods§

fn TuningSpace(&self) -> Result<ITuningSpace>

fn Components(&self) -> Result<IComponents>

fn Clone(&self) -> Result<ITuneRequest>

fn Locator(&self) -> Result<ILocator>

fn SetLocator(&self, locator: Option<&ILocator>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§