pub enum LazyLoaderError {
ChunkIsNotLast {
id: ChunkIdentifier,
},
Cycle {
new_chunk: ChunkIdentifier,
with_chunk: ChunkIdentifier,
},
MissingNextChunk {
id: ChunkIdentifier,
},
CannotConnectTwoChunks {
new_chunk: ChunkIdentifier,
with_chunk: ChunkIdentifier,
},
ChunkTooLarge {
id: ChunkIdentifier,
},
// some variants omitted
}
Variants§
ChunkIsNotLast
Fields
§
id: ChunkIdentifier
Cycle
MissingNextChunk
Fields
§
id: ChunkIdentifier
CannotConnectTwoChunks
ChunkTooLarge
Fields
§
id: ChunkIdentifier
Trait Implementations§
Source§impl Debug for LazyLoaderError
impl Debug for LazyLoaderError
Source§impl Display for LazyLoaderError
impl Display for LazyLoaderError
Source§impl Error for LazyLoaderError
impl Error for LazyLoaderError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
Auto Trait Implementations§
impl Freeze for LazyLoaderError
impl RefUnwindSafe for LazyLoaderError
impl Send for LazyLoaderError
impl Sync for LazyLoaderError
impl Unpin for LazyLoaderError
impl UnwindSafe for LazyLoaderError
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
§impl<T> CompatExt for T
impl<T> CompatExt for T
Source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
Source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>