Skip to main content

IntoScene

Trait IntoScene 

Source
pub trait IntoScene {
    // Required method
    fn into(self, assets: &AssetLibrary) -> Scene;
}

Required Methods§

Source

fn into(self, assets: &AssetLibrary) -> Scene

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl IntoScene for Scene

Source§

impl<T> IntoScene for T
where T: SceneBuilder,