pub struct Dag<N: GraphNodeId> { /* private fields */ }Expand description
A directed acyclic graph structure.
Implementations§
Source§impl<N: GraphNodeId> Dag<N>
impl<N: GraphNodeId> Dag<N>
Trait Implementations§
Auto Trait Implementations§
impl<N> Freeze for Dag<N>
impl<N> RefUnwindSafe for Dag<N>where
N: RefUnwindSafe,
<N as GraphNodeId>::Edge: RefUnwindSafe,
<N as GraphNodeId>::Adjacent: RefUnwindSafe,
impl<N> Send for Dag<N>
impl<N> Sync for Dag<N>
impl<N> Unpin for Dag<N>
impl<N> UnwindSafe for Dag<N>where
N: UnwindSafe,
<N as GraphNodeId>::Edge: UnwindSafe,
<N as GraphNodeId>::Adjacent: 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
Source§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
Source§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Creates Self using default().
Source§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
Source§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Converts this type into the system output type.