pub enum EbpfSectionKind {
Undefined,
Maps,
BtfMaps,
Program,
Data,
Rodata,
Bss,
Text,
Btf,
BtfExt,
License,
Version,
}
Expand description
The kind of an ELF section.
Variants§
Undefined
Undefined
Maps
maps
BtfMaps
.maps
Program
A program section
Data
.data
Rodata
.rodata
Bss
.bss
Text
.text
Btf
.BTF
BtfExt
.BTF.ext
License
license
Version
version
Trait Implementations§
Source§impl Clone for EbpfSectionKind
impl Clone for EbpfSectionKind
Source§fn clone(&self) -> EbpfSectionKind
fn clone(&self) -> EbpfSectionKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EbpfSectionKind
impl Debug for EbpfSectionKind
Source§impl PartialEq for EbpfSectionKind
impl PartialEq for EbpfSectionKind
impl Copy for EbpfSectionKind
impl Eq for EbpfSectionKind
impl StructuralPartialEq for EbpfSectionKind
Auto Trait Implementations§
impl Freeze for EbpfSectionKind
impl RefUnwindSafe for EbpfSectionKind
impl Send for EbpfSectionKind
impl Sync for EbpfSectionKind
impl Unpin for EbpfSectionKind
impl UnwindSafe for EbpfSectionKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.