Struct rafx_framework::render_features::render_features_prelude::RenderFeatureSubmitNode
source · [−]pub struct RenderFeatureSubmitNode { /* private fields */ }
Expand description
A type-erased struct representing some RenderFeature
’s SubmitNode
. The PreparedRenderData
will iterate through the sorted slice of RenderFeatureSubmitNode
in a ViewPhaseSubmitNodeBlock
and call the functions on the RenderFeatureWriteJob
specified by the RenderFeatureIndex
.
Implementations
sourceimpl RenderFeatureSubmitNode
impl RenderFeatureSubmitNode
pub fn new(
feature_index: RenderFeatureIndex,
submit_node_id: SubmitNodeId,
sort_key: SubmitNodeSortKey,
distance: f32
) -> Self
pub fn feature_index(&self) -> RenderFeatureIndex
pub fn submit_node_id(&self) -> SubmitNodeId
pub fn sort_key(&self) -> SubmitNodeSortKey
pub fn distance(&self) -> f32
Trait Implementations
sourceimpl Clone for RenderFeatureSubmitNode
impl Clone for RenderFeatureSubmitNode
sourcefn clone(&self) -> RenderFeatureSubmitNode
fn clone(&self) -> RenderFeatureSubmitNode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for RenderFeatureSubmitNode
impl Debug for RenderFeatureSubmitNode
impl Copy for RenderFeatureSubmitNode
Auto Trait Implementations
impl RefUnwindSafe for RenderFeatureSubmitNode
impl Send for RenderFeatureSubmitNode
impl Sync for RenderFeatureSubmitNode
impl Unpin for RenderFeatureSubmitNode
impl UnwindSafe for RenderFeatureSubmitNode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
sourcefn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
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
. Read more
sourcefn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
sourcefn 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. Read more
sourcefn 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. Read more
sourceimpl<T> DowncastSync for T where
T: Any + Send + Sync,
impl<T> DowncastSync for T where
T: Any + Send + Sync,
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more