pub struct ExceptionGraphEdge<R> {
pub parent: ManagedId,
pub edge: EdgeId,
pub role: R,
pub target: ManagedId,
}Expand description
One caller-typed relation in a bounded graph view.
Fields§
§parent: ManagedIdParent object that owns the stable edge identity.
edge: EdgeIdStable identity local to parent.
role: RCaller-owned relation role.
target: ManagedIdRelated exception object.
Trait Implementations§
Source§impl<R: Clone> Clone for ExceptionGraphEdge<R>
impl<R: Clone> Clone for ExceptionGraphEdge<R>
Source§fn clone(&self) -> ExceptionGraphEdge<R>
fn clone(&self) -> ExceptionGraphEdge<R>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<R: Debug> Debug for ExceptionGraphEdge<R>
impl<R: Debug> Debug for ExceptionGraphEdge<R>
impl<R: Eq> Eq for ExceptionGraphEdge<R>
Source§impl<R: PartialEq> PartialEq for ExceptionGraphEdge<R>
impl<R: PartialEq> PartialEq for ExceptionGraphEdge<R>
impl<R: PartialEq> StructuralPartialEq for ExceptionGraphEdge<R>
Auto Trait Implementations§
impl<R> Freeze for ExceptionGraphEdge<R>where
R: Freeze,
impl<R> RefUnwindSafe for ExceptionGraphEdge<R>where
R: RefUnwindSafe,
impl<R> Send for ExceptionGraphEdge<R>where
R: Send,
impl<R> Sync for ExceptionGraphEdge<R>where
R: Sync,
impl<R> Unpin for ExceptionGraphEdge<R>where
R: Unpin,
impl<R> UnsafeUnpin for ExceptionGraphEdge<R>where
R: UnsafeUnpin,
impl<R> UnwindSafe for ExceptionGraphEdge<R>where
R: 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