pub enum LodError {
InvalidIndex(String),
InvalidPlanner(String),
BudgetExceeded(String),
UnknownNode(u64),
Records(String),
Copc(String),
}Expand description
LOD validation, admission, or adapter error.
Variants§
InvalidIndex(String)
Index metadata is malformed.
InvalidPlanner(String)
Planner configuration or camera is invalid.
BudgetExceeded(String)
A hard resource budget rejected work before allocation/upload.
UnknownNode(u64)
A node was missing.
Records(String)
Record-memory lease admission failed.
Copc(String)
COPC query adaptation failed.
Trait Implementations§
Source§impl Error for LodError
impl Error for LodError
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()
impl Eq for LodError
impl StructuralPartialEq for LodError
Auto Trait Implementations§
impl Freeze for LodError
impl RefUnwindSafe for LodError
impl Send for LodError
impl Sync for LodError
impl Unpin for LodError
impl UnsafeUnpin for LodError
impl UnwindSafe for LodError
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