pub trait IMFSourceBufferNotify_Impl: Sized {
    // Required methods
    fn OnUpdateStart(&self);
    fn OnAbort(&self);
    fn OnError(&self, hr: HRESULT);
    fn OnUpdate(&self);
    fn OnUpdateEnd(&self);
}

Required Methods§

fn OnUpdateStart(&self)

fn OnAbort(&self)

fn OnError(&self, hr: HRESULT)

fn OnUpdate(&self)

fn OnUpdateEnd(&self)

Object Safety§

This trait is not object safe.

Implementors§