pub struct EdgeID(/* private fields */);
Expand description
An index to an edge in the slotmap
Implementations§
Trait Implementations§
Source§impl Key for EdgeID
impl Key for EdgeID
Source§fn null() -> Self
fn null() -> Self
Creates a new key that is always invalid and distinct from any non-null
key. A null key can only be created through this method (or default
initialization of keys made with
new_key_type!
, which calls this
method). Read moreSource§impl Ord for EdgeID
impl Ord for EdgeID
Source§impl PartialOrd for EdgeID
impl PartialOrd for EdgeID
impl Copy for EdgeID
impl Eq for EdgeID
impl StructuralPartialEq for EdgeID
Auto Trait Implementations§
impl Freeze for EdgeID
impl RefUnwindSafe for EdgeID
impl Send for EdgeID
impl Sync for EdgeID
impl Unpin for EdgeID
impl UnwindSafe for EdgeID
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