Enum bevy_asset::io::AssetReaderError
source · pub enum AssetReaderError {
NotFound(PathBuf),
Io(Arc<Error>),
HttpError(u16),
}
Expand description
Errors that occur while loading assets.
Variants§
NotFound(PathBuf)
Path not found.
Io(Arc<Error>)
Encountered an I/O error while loading an asset.
HttpError(u16)
The HTTP request completed but returned an unhandled HTTP response status code.
If the request fails before getting a status code (e.g. request timeout, interrupted connection, etc), expect AssetReaderError::Io
.
Trait Implementations§
source§impl Clone for AssetReaderError
impl Clone for AssetReaderError
source§fn clone(&self) -> AssetReaderError
fn clone(&self) -> AssetReaderError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AssetReaderError
impl Debug for AssetReaderError
source§impl Display for AssetReaderError
impl Display for AssetReaderError
source§impl Error for AssetReaderError
impl Error for AssetReaderError
1.30.0 · source§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()
source§impl From<AssetReaderError> for AssetLoadError
impl From<AssetReaderError> for AssetLoadError
source§fn from(source: AssetReaderError) -> Self
fn from(source: AssetReaderError) -> Self
Converts to this type from the input type.
source§impl From<AssetReaderError> for ReadAssetBytesError
impl From<AssetReaderError> for ReadAssetBytesError
source§fn from(source: AssetReaderError) -> Self
fn from(source: AssetReaderError) -> Self
Converts to this type from the input type.
source§impl From<Error> for AssetReaderError
impl From<Error> for AssetReaderError
source§impl PartialEq for AssetReaderError
impl PartialEq for AssetReaderError
impl Eq for AssetReaderError
Auto Trait Implementations§
impl Freeze for AssetReaderError
impl !RefUnwindSafe for AssetReaderError
impl Send for AssetReaderError
impl Sync for AssetReaderError
impl Unpin for AssetReaderError
impl !UnwindSafe for AssetReaderError
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.source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.