#[repr(C)]pub struct GraphEdge<E: Copy + Default + 'static> {
pub value: E,
pub dst: u32,
pub next_in_src_list: u32,
}Fields§
§value: E§dst: u32§next_in_src_list: u32Trait Implementations§
impl<E: Copy + Copy + Default + 'static> Copy for GraphEdge<E>
Auto Trait Implementations§
impl<E> Freeze for GraphEdge<E>where
E: Freeze,
impl<E> RefUnwindSafe for GraphEdge<E>where
E: RefUnwindSafe,
impl<E> Send for GraphEdge<E>where
E: Send,
impl<E> Sync for GraphEdge<E>where
E: Sync,
impl<E> Unpin for GraphEdge<E>where
E: Unpin,
impl<E> UnsafeUnpin for GraphEdge<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for GraphEdge<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