Enum bevy::asset::processor::ProcessError
pub enum ProcessError {
Show 14 variants
MissingAssetLoaderForExtension(MissingAssetLoaderForExtensionError),
MissingAssetLoaderForTypeName(MissingAssetLoaderForTypeNameError),
MissingProcessor(String),
AssetReaderError {
path: AssetPath<'static>,
err: AssetReaderError,
},
AssetWriterError {
path: AssetPath<'static>,
err: AssetWriterError,
},
MissingAssetWriterError(MissingAssetWriterError),
MissingProcessedAssetReaderError(MissingProcessedAssetReaderError),
MissingProcessedAssetWriterError(MissingProcessedAssetWriterError),
ReadAssetMetaError {
path: AssetPath<'static>,
err: AssetReaderError,
},
DeserializeMetaError(DeserializeMetaError),
AssetLoadError(AssetLoadError),
WrongMetaType,
AssetSaveError(Box<dyn Error + Sync + Send, Global>),
ExtensionRequired,
}
Expand description
An error that is encountered during Process::process
.
Variants§
MissingAssetLoaderForExtension(MissingAssetLoaderForExtensionError)
MissingAssetLoaderForTypeName(MissingAssetLoaderForTypeNameError)
MissingProcessor(String)
AssetReaderError
AssetWriterError
MissingAssetWriterError(MissingAssetWriterError)
MissingProcessedAssetReaderError(MissingProcessedAssetReaderError)
MissingProcessedAssetWriterError(MissingProcessedAssetWriterError)
ReadAssetMetaError
DeserializeMetaError(DeserializeMetaError)
AssetLoadError(AssetLoadError)
WrongMetaType
AssetSaveError(Box<dyn Error + Sync + Send, Global>)
ExtensionRequired
Trait Implementations§
§impl Debug for ProcessError
impl Debug for ProcessError
§impl Display for ProcessError
impl Display for ProcessError
§impl Error for ProcessError
impl Error for ProcessError
§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
§impl From<AssetLoadError> for ProcessError
impl From<AssetLoadError> for ProcessError
§fn from(source: AssetLoadError) -> ProcessError
fn from(source: AssetLoadError) -> ProcessError
Converts to this type from the input type.
§impl From<DeserializeMetaError> for ProcessError
impl From<DeserializeMetaError> for ProcessError
§fn from(source: DeserializeMetaError) -> ProcessError
fn from(source: DeserializeMetaError) -> ProcessError
Converts to this type from the input type.
§impl From<MissingAssetLoaderForExtensionError> for ProcessError
impl From<MissingAssetLoaderForExtensionError> for ProcessError
§fn from(source: MissingAssetLoaderForExtensionError) -> ProcessError
fn from(source: MissingAssetLoaderForExtensionError) -> ProcessError
Converts to this type from the input type.
§impl From<MissingAssetLoaderForTypeNameError> for ProcessError
impl From<MissingAssetLoaderForTypeNameError> for ProcessError
§fn from(source: MissingAssetLoaderForTypeNameError) -> ProcessError
fn from(source: MissingAssetLoaderForTypeNameError) -> ProcessError
Converts to this type from the input type.
§impl From<MissingAssetWriterError> for ProcessError
impl From<MissingAssetWriterError> for ProcessError
§fn from(source: MissingAssetWriterError) -> ProcessError
fn from(source: MissingAssetWriterError) -> ProcessError
Converts to this type from the input type.
§impl From<MissingProcessedAssetReaderError> for ProcessError
impl From<MissingProcessedAssetReaderError> for ProcessError
§fn from(source: MissingProcessedAssetReaderError) -> ProcessError
fn from(source: MissingProcessedAssetReaderError) -> ProcessError
Converts to this type from the input type.
§impl From<MissingProcessedAssetWriterError> for ProcessError
impl From<MissingProcessedAssetWriterError> for ProcessError
§fn from(source: MissingProcessedAssetWriterError) -> ProcessError
fn from(source: MissingProcessedAssetWriterError) -> ProcessError
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for ProcessError
impl Send for ProcessError
impl Sync for ProcessError
impl Unpin for ProcessError
impl !UnwindSafe for ProcessError
Blanket Implementations§
§impl<T, U> AsBindGroupShaderType<U> for Twhere
U: ShaderType,
&'a T: for<'a> Into<U>,
impl<T, U> AsBindGroupShaderType<U> for Twhere U: ShaderType, &'a T: for<'a> Into<U>,
§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
Return the
T
ShaderType
for self
. When used in AsBindGroup
derives, it is safe to assume that all images in self
exist.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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any, 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
.§fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>
fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§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.§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.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
source§impl<E> InstrumentError for Ewhere
TracedError<E>: From<E>,
impl<E> InstrumentError for Ewhere TracedError<E>: From<E>,
§type Instrumented = TracedError<E>
type Instrumented = TracedError<E>
The type of the wrapped error after instrumentation
source§fn in_current_span(self) -> <E as InstrumentError>::Instrumented
fn in_current_span(self) -> <E as InstrumentError>::Instrumented
Instrument an Error by bundling it with a SpanTrace Read more