pub struct ReversedGraph<G: Graph<S>, B: Borrow<G>, const S: usize = DEFAULT_GRAPH_SUCCS_NUM> { /* private fields */ }Expand description
A reversed graph used for backward analysis.
Trait Implementations§
Auto Trait Implementations§
impl<G, B, const S: usize> Freeze for ReversedGraph<G, B, S>where
B: Freeze,
impl<G, B, const S: usize> RefUnwindSafe for ReversedGraph<G, B, S>where
B: RefUnwindSafe,
G: RefUnwindSafe,
impl<G, B, const S: usize = DEFAULT_GRAPH_SUCCS_NUM> !Send for ReversedGraph<G, B, S>
impl<G, B, const S: usize = DEFAULT_GRAPH_SUCCS_NUM> !Sync for ReversedGraph<G, B, S>
impl<G, B, const S: usize> Unpin for ReversedGraph<G, B, S>where
B: Unpin,
impl<G, B, const S: usize> UnsafeUnpin for ReversedGraph<G, B, S>where
B: UnsafeUnpin,
impl<G, B, const S: usize> UnwindSafe for ReversedGraph<G, B, S>where
B: UnwindSafe,
G: RefUnwindSafe,
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