pub struct RenderFeatureDebugConstants {Show 14 fields
pub feature_name: &'static str,
pub begin_per_frame_extract: &'static str,
pub extract_render_object_instance: &'static str,
pub extract_render_object_instance_per_view: &'static str,
pub end_per_view_extract: &'static str,
pub end_per_frame_extract: &'static str,
pub begin_per_frame_prepare: &'static str,
pub prepare_render_object_instance: &'static str,
pub prepare_render_object_instance_per_view: &'static str,
pub end_per_view_prepare: &'static str,
pub end_per_frame_prepare: &'static str,
pub on_begin_execute_graph: &'static str,
pub render_submit_node: &'static str,
pub begin_submit_node_batch: &'static str,
}
Fields§
§feature_name: &'static str
§begin_per_frame_extract: &'static str
§extract_render_object_instance: &'static str
§extract_render_object_instance_per_view: &'static str
§end_per_view_extract: &'static str
§end_per_frame_extract: &'static str
§begin_per_frame_prepare: &'static str
§prepare_render_object_instance: &'static str
§prepare_render_object_instance_per_view: &'static str
§end_per_view_prepare: &'static str
§end_per_frame_prepare: &'static str
§on_begin_execute_graph: &'static str
§render_submit_node: &'static str
§begin_submit_node_batch: &'static str
Auto Trait Implementations§
impl Freeze for RenderFeatureDebugConstants
impl RefUnwindSafe for RenderFeatureDebugConstants
impl Send for RenderFeatureDebugConstants
impl Sync for RenderFeatureDebugConstants
impl Unpin for RenderFeatureDebugConstants
impl UnwindSafe for RenderFeatureDebugConstants
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.