pub struct Graph<T> {
pub data: Vec<T>,
/* private fields */
}Fields§
§data: Vec<T>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Graph<T>
impl<T> RefUnwindSafe for Graph<T>where
T: RefUnwindSafe,
impl<T> Send for Graph<T>where
T: Send,
impl<T> Sync for Graph<T>where
T: Sync,
impl<T> Unpin for Graph<T>where
T: Unpin,
impl<T> UnsafeUnpin for Graph<T>
impl<T> UnwindSafe for Graph<T>where
T: 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