pub struct GraphNode<E> {
pub edges: Vec<E>,
}
Expand description
グラフのノード
Fields§
§edges: Vec<E>
接続する辺
Trait Implementations§
Source§impl<E: EdgeTrait> IntoIterator for GraphNode<E>
impl<E: EdgeTrait> IntoIterator for GraphNode<E>
Auto Trait Implementations§
impl<E> Freeze for GraphNode<E>
impl<E> RefUnwindSafe for GraphNode<E>where
E: RefUnwindSafe,
impl<E> Send for GraphNode<E>where
E: Send,
impl<E> Sync for GraphNode<E>where
E: Sync,
impl<E> Unpin for GraphNode<E>where
E: Unpin,
impl<E> UnwindSafe for GraphNode<E>where
E: 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