pub trait IntoAssets {
// Required method
fn into_assets(self) -> Assets;
}Expand description
Conversion into a Assets
Required Methods§
Sourcefn into_assets(self) -> Assets
fn into_assets(self) -> Assets
Convert self into a Assets struct
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".