Struct bevy_render::render_graph::SlotInfos
source · pub struct SlotInfos { /* private fields */ }Implementations§
source§impl SlotInfos
impl SlotInfos
sourcepub fn get_slot(&self, label: impl Into<SlotLabel>) -> Option<&SlotInfo>
pub fn get_slot(&self, label: impl Into<SlotLabel>) -> Option<&SlotInfo>
Retrieves the SlotInfo for the provided label.
sourcepub fn get_slot_mut(
&mut self,
label: impl Into<SlotLabel>
) -> Option<&mut SlotInfo>
pub fn get_slot_mut(
&mut self,
label: impl Into<SlotLabel>
) -> Option<&mut SlotInfo>
Retrieves the SlotInfo for the provided label mutably.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for SlotInfos
impl Send for SlotInfos
impl Sync for SlotInfos
impl Unpin for SlotInfos
impl UnwindSafe for SlotInfos
Blanket Implementations§
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn 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 moresource§fn 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 moresource§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. Read moresource§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. Read moresource§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
source§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Creates
Self using data from the given World