pub enum RelationalLinkedChunkError {
InvalidChunkIdentifier {
identifier: ChunkIdentifier,
},
}Expand description
An error type for representing the possible failures
in operations on a RelationalLinkedChunk.
Variants§
InvalidChunkIdentifier
A chunk identifier is invalid.
Fields
§
identifier: ChunkIdentifierThe chunk identifier.
Trait Implementations§
Source§impl Debug for RelationalLinkedChunkError
impl Debug for RelationalLinkedChunkError
Source§impl Display for RelationalLinkedChunkError
impl Display for RelationalLinkedChunkError
Source§impl Error for RelationalLinkedChunkError
impl Error for RelationalLinkedChunkError
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 RelationalLinkedChunkError
impl RefUnwindSafe for RelationalLinkedChunkError
impl Send for RelationalLinkedChunkError
impl Sync for RelationalLinkedChunkError
impl Unpin for RelationalLinkedChunkError
impl UnsafeUnpin for RelationalLinkedChunkError
impl UnwindSafe for RelationalLinkedChunkError
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