pub trait IAnimationObject_Impl: Sized {
    // Required method
    fn PopulatePropertyInfo(
        &self,
        propertyname: &HSTRING,
        propertyinfo: Option<&AnimationPropertyInfo>
    ) -> Result<()>;
}

Required Methods§

fn PopulatePropertyInfo( &self, propertyname: &HSTRING, propertyinfo: Option<&AnimationPropertyInfo> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§