pub struct Cell<D, Ix = DefaultIx>where
Ix: IndexType,{
pub data: Option<Box<D>>,
/* private fields */
}Expand description
A Cell is an entry point for data within the graph structure. It is formed by surrounding super::Edges and represents area data.
Fields§
§data: Option<Box<D>>The assosiated data attached to this Cell.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<D, Ix> Freeze for Cell<D, Ix>
impl<D, Ix> RefUnwindSafe for Cell<D, Ix>where
Ix: RefUnwindSafe,
D: RefUnwindSafe,
impl<D, Ix> Send for Cell<D, Ix>
impl<D, Ix> Sync for Cell<D, Ix>
impl<D, Ix> Unpin for Cell<D, Ix>where
Ix: Unpin,
impl<D, Ix> UnwindSafe for Cell<D, Ix>where
D: UnwindSafe,
Ix: 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