pub enum LinkGeometryError {
InvalidLength,
}Expand description
Errors returned by link-geometry validation.
Variants§
InvalidLength
Link length must be strictly positive.
Trait Implementations§
Source§impl Clone for LinkGeometryError
impl Clone for LinkGeometryError
Source§fn clone(&self) -> LinkGeometryError
fn clone(&self) -> LinkGeometryError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LinkGeometryError
impl Debug for LinkGeometryError
Source§impl Display for LinkGeometryError
impl Display for LinkGeometryError
Source§impl Error for LinkGeometryError
impl Error for LinkGeometryError
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()
Source§impl PartialEq for LinkGeometryError
impl PartialEq for LinkGeometryError
impl Copy for LinkGeometryError
impl StructuralPartialEq for LinkGeometryError
Auto Trait Implementations§
impl Freeze for LinkGeometryError
impl RefUnwindSafe for LinkGeometryError
impl Send for LinkGeometryError
impl Sync for LinkGeometryError
impl Unpin for LinkGeometryError
impl UnsafeUnpin for LinkGeometryError
impl UnwindSafe for LinkGeometryError
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