pub enum LinkedChunkBuilderError {
ChunkTooLarge {
id: ChunkIdentifier,
},
MissingFirstChunk,
MultipleFirstChunks {
first_candidate: ChunkIdentifier,
second_candidate: ChunkIdentifier,
},
MissingChunk {
id: ChunkIdentifier,
},
Cycle {
repeated: ChunkIdentifier,
},
MultipleConnectedComponents,
}
Variants§
ChunkTooLarge
Fields
§
id: ChunkIdentifier
MissingFirstChunk
MultipleFirstChunks
MissingChunk
Fields
§
id: ChunkIdentifier
Cycle
Fields
§
repeated: ChunkIdentifier
MultipleConnectedComponents
Trait Implementations§
Source§impl Debug for LinkedChunkBuilderError
impl Debug for LinkedChunkBuilderError
Source§impl Display for LinkedChunkBuilderError
impl Display for LinkedChunkBuilderError
Source§impl Error for LinkedChunkBuilderError
impl Error for LinkedChunkBuilderError
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 LinkedChunkBuilderError
impl RefUnwindSafe for LinkedChunkBuilderError
impl Send for LinkedChunkBuilderError
impl Sync for LinkedChunkBuilderError
impl Unpin for LinkedChunkBuilderError
impl UnwindSafe for LinkedChunkBuilderError
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<>