pub trait IAudienceAnimeMethods: IAudienceAnime {
// Provided methods
fn ctor(
self,
material: impl Into<Material>,
pattern: impl Into<i32>,
speed: impl Into<f32>,
) { ... }
fn get_material(self) -> Material { ... }
fn update(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
material: impl Into<Material>,
pattern: impl Into<i32>,
speed: impl Into<f32>,
)
fn ctor( self, material: impl Into<Material>, pattern: impl Into<i32>, speed: impl Into<f32>, )
.ctor(crate::unity_engine::material::Material, i32, f32) overload
Sourcefn get_material(self) -> Material
fn get_material(self) -> Material
GetMaterial() 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: IAudienceAnime> IAudienceAnimeMethods for __T
Available on crate feature
root-audienceanime only.