Struct rxdp::PerfMap[][src]

pub struct PerfMap<T> { /* fields omitted */ }

Used for working with a perf eBPF map.

Implementations

impl<T: 'static + Copy + Send> PerfMap<T>[src]

pub fn new(xdp: &XDPLoadedObject, map_name: &str) -> XDPResult<PerfMap<T>>[src]

Get access to the eBPF map map_name.

Errors

Returns an error in the following cases:

  • The requested key size doesn’t match the key size defined in the ELF file.
  • The map_type is not MapType::PerfEventArray.

pub fn start_polling(&mut self, time_ms: i32) -> Receiver<PerfEvent<T>>[src]

Start polling the underlying eBPF map for events, waiting up to time_ms milliseconds for an event. Returns the receiver side of an unbounded channel, which will receive all events.

Auto Trait Implementations

impl<T> RefUnwindSafe for PerfMap<T> where
    T: RefUnwindSafe

impl<T> Send for PerfMap<T> where
    T: Send

impl<T> Sync for PerfMap<T> where
    T: Sync

impl<T> Unpin for PerfMap<T> where
    T: Unpin

impl<T> UnwindSafe for PerfMap<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.