Skip to main content

IFade_ProcDescInOutMethods

Trait IFade_ProcDescInOutMethods 

Source
pub trait IFade_ProcDescInOutMethods: IFade_ProcDescInOut {
    // Provided methods
    fn ctor(
        self,
        layer: impl Into<Fade_Layer>,
        color: impl Into<Color>,
        duration: impl Into<f32>,
        is_in: impl Into<bool>,
    ) { ... }
    fn execute(self, inst: impl Into<ProcInst>) -> ProcDesc_Result { ... }
}

Provided Methods§

Source

fn ctor( self, layer: impl Into<Fade_Layer>, color: impl Into<Color>, duration: impl Into<f32>, is_in: impl Into<bool>, )

.ctor(crate::app::fade::Fade_Layer, crate::unity_engine::color::Color, f32, bool) overload

Source

fn execute(self, inst: impl Into<ProcInst>) -> ProcDesc_Result

Execute(crate::app::procinst::ProcInst) overload

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<__T: IFade_ProcDescInOut> IFade_ProcDescInOutMethods for __T

Available on crate feature app-fade only.