pub enum ReadPathError<E> {
Backend(E),
Tile(Error),
}Expand description
Error from the recompute_root_via read-path bridge: either the backend
failed to fetch a tile, or a fetched tile was malformed.
Variants§
Backend(E)
The TileReader backend failed to fetch a tile.
Tile(Error)
A fetched tile was structurally invalid (wrong byte length for its
declared width). Wraps a crate::Error.
Trait Implementations§
Source§impl<E: Clone> Clone for ReadPathError<E>
impl<E: Clone> Clone for ReadPathError<E>
Source§fn clone(&self) -> ReadPathError<E>
fn clone(&self) -> ReadPathError<E>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<E: Debug> Debug for ReadPathError<E>
impl<E: Debug> Debug for ReadPathError<E>
impl<E: Eq> Eq for ReadPathError<E>
Source§impl<E: PartialEq> PartialEq for ReadPathError<E>
impl<E: PartialEq> PartialEq for ReadPathError<E>
Source§fn eq(&self, other: &ReadPathError<E>) -> bool
fn eq(&self, other: &ReadPathError<E>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<E: PartialEq> StructuralPartialEq for ReadPathError<E>
Auto Trait Implementations§
impl<E> Freeze for ReadPathError<E>where
E: Freeze,
impl<E> RefUnwindSafe for ReadPathError<E>where
E: RefUnwindSafe,
impl<E> Send for ReadPathError<E>where
E: Send,
impl<E> Sync for ReadPathError<E>where
E: Sync,
impl<E> Unpin for ReadPathError<E>where
E: Unpin,
impl<E> UnsafeUnpin for ReadPathError<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for ReadPathError<E>where
E: UnwindSafe,
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