Trait bevy_reflect::DynamicTypePath
source · pub trait DynamicTypePath {
// Required methods
fn reflect_type_path(&self) -> &str;
fn reflect_short_type_path(&self) -> &str;
fn reflect_type_ident(&self) -> Option<&str>;
fn reflect_crate_name(&self) -> Option<&str>;
fn reflect_module_path(&self) -> Option<&str>;
}
Expand description
Required Methods§
sourcefn reflect_type_path(&self) -> &str
fn reflect_type_path(&self) -> &str
See TypePath::type_path
.
sourcefn reflect_short_type_path(&self) -> &str
fn reflect_short_type_path(&self) -> &str
sourcefn reflect_type_ident(&self) -> Option<&str>
fn reflect_type_ident(&self) -> Option<&str>
See TypePath::type_ident
.
sourcefn reflect_crate_name(&self) -> Option<&str>
fn reflect_crate_name(&self) -> Option<&str>
See TypePath::crate_name
.