pub trait IInternetProtocolSinkStackable_Impl: Sized {
    // Required methods
    fn SwitchSink(
        &self,
        poiprotsink: Option<&IInternetProtocolSink>,
    ) -> Result<()>;
    fn CommitSwitch(&self) -> Result<()>;
    fn RollbackSwitch(&self) -> Result<()>;
}

Required Methods§

fn SwitchSink(&self, poiprotsink: Option<&IInternetProtocolSink>) -> Result<()>

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

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

Object Safety§

This trait is not object safe.

Implementors§