//! Node access callback traits
/// Read-write access for links stored in singly linked list elements.
pubtraitNodesLinkMut<Index> {/// Get the next item of `index` in the list.
fnnode_next(&mutself, index: Index)->Option<Index>;/// Set the next item of `index` in the list.
fnset_node_next(&mutself, index: Index, next:Option<Index>);}