maps: add newline between doc and imports

reviewable/pr1357/r14
Tamir Duberstein 2 weeks ago
parent 0013ff4e9e
commit 742f700dcc
No known key found for this signature in database

@ -1,4 +1,5 @@
//! Array types.
#[expect(clippy::module_inception)]
mod array;
mod per_cpu_array;

@ -1,4 +1,5 @@
//! A Bloom Filter.
use std::{
borrow::{Borrow, BorrowMut},
marker::PhantomData,

@ -1,4 +1,5 @@
//! A LPM Trie.
use std::{
borrow::{Borrow, BorrowMut},
marker::PhantomData,

@ -1,6 +1,7 @@
//! A map that can be used to receive events from eBPF programs using the linux [`perf`] API
//!
//! [`perf`]: https://perf.wiki.kernel.org/index.php/Main_Page.
use std::{
borrow::{Borrow, BorrowMut},
ops::Deref as _,

@ -1,4 +1,5 @@
//! A FIFO queue.
use std::{
borrow::{Borrow, BorrowMut},
marker::PhantomData,

@ -1,4 +1,5 @@
//! A LIFO stack.
use std::{
borrow::{Borrow, BorrowMut},
marker::PhantomData,

@ -1,6 +1,7 @@
//! A hash map of kernel or user space stack traces.
//!
//! See [`StackTraceMap`] for documentation and examples.
use std::{
borrow::{Borrow, BorrowMut},
fs, io, mem,

@ -1,4 +1,4 @@
//! An hashmap of network devices.
//! A hashmap of network devices.
use std::{
borrow::{Borrow, BorrowMut},

Loading…
Cancel
Save