pub trait IAudioSessionNotification_Impl: Sized {
    // Required method
    fn OnSessionCreated(
        &self,
        newsession: Option<&IAudioSessionControl>
    ) -> Result<()>;
}

Required Methods§

fn OnSessionCreated( &self, newsession: Option<&IAudioSessionControl> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§