devela/data/list/link/
reexports.rs

1// devela::data::list::link::reexports
2//
3//! Reexported items.
4//
5
6#[cfg(feature = "alloc")]
7crate::impl_cdef![<T> Self::new() => LinkedList<T>]; // impl ConstDefault
8
9crate::reexport! { rust: alloc::collections,
10    tag: crate::TAG_DATA_STRUCTURE!(),
11    doc: "A doubly-linked list with owned nodes.",
12    LinkedList
13}