pub struct EdgeClosedError<LABEL> {
pub scope: Scope,
pub label: LABEL,
}
Expand description
Error returned when attempting to add an edge with a label that is already closed in that scope.
Fields§
§scope: Scope
§label: LABEL
Trait Implementations§
Auto Trait Implementations§
impl<LABEL> Freeze for EdgeClosedError<LABEL>where
LABEL: Freeze,
impl<LABEL> RefUnwindSafe for EdgeClosedError<LABEL>where
LABEL: RefUnwindSafe,
impl<LABEL> Send for EdgeClosedError<LABEL>where
LABEL: Send,
impl<LABEL> Sync for EdgeClosedError<LABEL>where
LABEL: Sync,
impl<LABEL> Unpin for EdgeClosedError<LABEL>where
LABEL: Unpin,
impl<LABEL> UnwindSafe for EdgeClosedError<LABEL>where
LABEL: 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