netstack3_base::socketTrait Inserter
Source pub trait Inserter<T> {
// Required method
fn insert(self, item: T);
}
Expand description
Inserts the provided item and consumes self
.
Inserts a single item and consumes the inserter (thus preventing
additional insertions).