pub enum SplitEdgeError {
VertexBound,
UndefinedEdge,
InvalidDarts(&'static str),
WrongAmountDarts(usize, usize),
}
Expand description
Error-modeling enum for edge-splitting routines.
Variants§
VertexBound
Relative position of the new vertex isn’t located on the edge.
UndefinedEdge
One or both vertices of the edge are undefined.
InvalidDarts(&'static str)
Darts passed to the function do not match requirements.
WrongAmountDarts(usize, usize)
The number of darts passed to create the new segments is too low. The usize
value
is the number of missing darts.
Trait Implementations§
Source§impl Debug for SplitEdgeError
impl Debug for SplitEdgeError
Source§impl Display for SplitEdgeError
impl Display for SplitEdgeError
Source§impl Error for SplitEdgeError
impl Error for SplitEdgeError
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 SplitEdgeError
impl PartialEq for SplitEdgeError
impl Eq for SplitEdgeError
impl StructuralPartialEq for SplitEdgeError
Auto Trait Implementations§
impl Freeze for SplitEdgeError
impl RefUnwindSafe for SplitEdgeError
impl Send for SplitEdgeError
impl Sync for SplitEdgeError
impl Unpin for SplitEdgeError
impl UnwindSafe for SplitEdgeError
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.