libbpf_rs

Struct OpenObject

Source
pub struct OpenObject { /* private fields */ }
Expand description

Represents an opened (but not yet loaded) BPF object file.

Use this object to access OpenMaps and OpenPrograms.

Implementations§

Source§

impl OpenObject

Source

pub unsafe fn from_ptr(ptr: NonNull<bpf_object>) -> Self

Takes ownership from pointer.

§Safety

Operations on the returned object are undefined if ptr is any one of: - null - points to an unopened bpf_object - points to a loaded bpf_object

It is not safe to manipulate ptr after this operation.

Source

pub fn take_ptr(self) -> NonNull<bpf_object>

Takes underlying libbpf_sys::bpf_object pointer.

Source

pub fn name(&self) -> Option<&OsStr>

Retrieve the object’s name.

Source

pub fn maps(&self) -> impl Iterator<Item = OpenMap<'_>>

Retrieve an iterator over all BPF maps in the object.

Source

pub fn maps_mut(&mut self) -> impl Iterator<Item = OpenMapMut<'_>>

Retrieve an iterator over all BPF maps in the object.

Source

pub fn progs(&self) -> impl Iterator<Item = OpenProgram<'_>>

Retrieve an iterator over all BPF programs in the object.

Source

pub fn progs_mut(&mut self) -> impl Iterator<Item = OpenProgramMut<'_>>

Retrieve an iterator over all BPF programs in the object.

Source

pub fn load(self) -> Result<Object>

Load the maps and programs contained in this BPF object into the system.

Trait Implementations§

Source§

impl AsRawLibbpf for OpenObject

Source§

fn as_libbpf_object(&self) -> NonNull<Self::LibbpfType>

Retrieve the underlying libbpf_sys::bpf_object.

Source§

type LibbpfType = bpf_object

The underlying libbpf type.
Source§

impl Debug for OpenObject

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Drop for OpenObject

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.