pub trait IMSVidXDSEvent_Impl: Sized + IMSVidFeatureEvent_Impl {
    // Required method
    fn RatingChange(
        &self,
        prevratingsystem: EnTvRat_System,
        prevlevel: EnTvRat_GenericLevel,
        prevattributes: BfEnTvRat_GenericAttributes,
        newratingsystem: EnTvRat_System,
        newlevel: EnTvRat_GenericLevel,
        newattributes: BfEnTvRat_GenericAttributes
    ) -> Result<()>;
}

Required Methods§

fn RatingChange( &self, prevratingsystem: EnTvRat_System, prevlevel: EnTvRat_GenericLevel, prevattributes: BfEnTvRat_GenericAttributes, newratingsystem: EnTvRat_System, newlevel: EnTvRat_GenericLevel, newattributes: BfEnTvRat_GenericAttributes ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§