pub enum DlDpipeEntry<'a> {
DpipeEntryIndex(u64),
DpipeEntryMatchValues(IterableDlDpipeEntryMatchValues<'a>),
DpipeEntryActionValues(IterableDlDpipeEntryActionValues<'a>),
DpipeEntryCounter(u64),
}Available on crate feature
devlink only.Variants§
DpipeEntryIndex(u64)
DpipeEntryMatchValues(IterableDlDpipeEntryMatchValues<'a>)
DpipeEntryActionValues(IterableDlDpipeEntryActionValues<'a>)
DpipeEntryCounter(u64)
Implementations§
Source§impl DlDpipeEntry<'_>
impl DlDpipeEntry<'_>
pub fn new<'a>(buf: &'a [u8]) -> IterableDlDpipeEntry<'a> ⓘ
Trait Implementations§
Source§impl<'a> Clone for DlDpipeEntry<'a>
impl<'a> Clone for DlDpipeEntry<'a>
Source§fn clone(&self) -> DlDpipeEntry<'a>
fn clone(&self) -> DlDpipeEntry<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for DlDpipeEntry<'a>
impl<'a> RefUnwindSafe for DlDpipeEntry<'a>
impl<'a> Send for DlDpipeEntry<'a>
impl<'a> Sync for DlDpipeEntry<'a>
impl<'a> Unpin for DlDpipeEntry<'a>
impl<'a> UnsafeUnpin for DlDpipeEntry<'a>
impl<'a> UnwindSafe for DlDpipeEntry<'a>
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