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§
Sourcefn ctor(
self,
layer: impl Into<Fade_Layer>,
color: impl Into<Color>,
duration: impl Into<f32>,
is_in: impl Into<bool>,
)
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
Sourcefn execute(self, inst: impl Into<ProcInst>) -> ProcDesc_Result
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§
impl<__T: IFade_ProcDescInOut> IFade_ProcDescInOutMethods for __T
Available on crate feature
app-fade only.