pub trait FromWorld {
// Required method
fn from_world(world: &mut World) -> Self;
}
Expand description
Required Methods§
sourcefn from_world(world: &mut World) -> Self
fn from_world(world: &mut World) -> Self
Creates Self
using data from the given World
.
Object Safety§
This trait is not object safe.