Enum bevy_render::render_graph::InputSlotError
source · pub enum InputSlotError {
InvalidSlot(SlotLabel),
MismatchedSlotType {
label: SlotLabel,
expected: SlotType,
actual: SlotType,
},
}
Variants
InvalidSlot(SlotLabel)
MismatchedSlotType
Trait Implementations
sourceimpl Debug for InputSlotError
impl Debug for InputSlotError
sourceimpl Display for InputSlotError
impl Display for InputSlotError
sourceimpl Error for InputSlotError
impl Error for InputSlotError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<InputSlotError> for NodeRunError
impl From<InputSlotError> for NodeRunError
sourcefn from(source: InputSlotError) -> Self
fn from(source: InputSlotError) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<InputSlotError> for InputSlotError
impl PartialEq<InputSlotError> for InputSlotError
sourcefn eq(&self, other: &InputSlotError) -> bool
fn eq(&self, other: &InputSlotError) -> bool
impl Eq for InputSlotError
impl StructuralEq for InputSlotError
impl StructuralPartialEq for InputSlotError
Auto Trait Implementations
impl RefUnwindSafe for InputSlotError
impl Send for InputSlotError
impl Sync for InputSlotError
impl Unpin for InputSlotError
impl UnwindSafe for InputSlotError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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 Twhere
T: Any,
impl<T> Downcast for Twhere
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 moresourcefn 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 moresourcefn 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 moresourcefn 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 moresourceimpl<T> DowncastSync for Twhere
T: Any + Send + Sync,
impl<T> DowncastSync for Twhere
T: Any + Send + Sync,
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.