pub enum CopcError {
Io(Error),
Las(Error),
Laz(LasZipError),
CopcInfoNotFound,
LazVlrNotFound,
TruncatedHierarchyPage {
offset: u64,
},
ByteSource(Box<dyn Error + Send + Sync>),
}Variants§
Io(Error)
Las(Error)
Laz(LasZipError)
CopcInfoNotFound
LazVlrNotFound
TruncatedHierarchyPage
ByteSource(Box<dyn Error + Send + Sync>)
Trait Implementations§
Source§impl Error for CopcError
impl Error for CopcError
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()
Source§impl From<LasZipError> for CopcError
impl From<LasZipError> for CopcError
Source§fn from(source: LasZipError) -> Self
fn from(source: LasZipError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CopcError
impl !RefUnwindSafe for CopcError
impl Send for CopcError
impl Sync for CopcError
impl Unpin for CopcError
impl UnsafeUnpin for CopcError
impl !UnwindSafe for CopcError
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