pub struct NeighborhoodLink {
pub from: usize,
pub rel: String,
pub to: usize,
}Expand description
Indices address stored items in this packet, not canonical memory refs.
Fields§
§from: usize§rel: String§to: usizeTrait Implementations§
Source§impl Clone for NeighborhoodLink
impl Clone for NeighborhoodLink
Source§fn clone(&self) -> NeighborhoodLink
fn clone(&self) -> NeighborhoodLink
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NeighborhoodLink
impl Debug for NeighborhoodLink
impl Eq for NeighborhoodLink
Source§impl PartialEq for NeighborhoodLink
impl PartialEq for NeighborhoodLink
Source§impl Serialize for NeighborhoodLink
impl Serialize for NeighborhoodLink
impl StructuralPartialEq for NeighborhoodLink
Auto Trait Implementations§
impl Freeze for NeighborhoodLink
impl RefUnwindSafe for NeighborhoodLink
impl Send for NeighborhoodLink
impl Sync for NeighborhoodLink
impl Unpin for NeighborhoodLink
impl UnsafeUnpin for NeighborhoodLink
impl UnwindSafe for NeighborhoodLink
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