pub enum DlDpipeField<'a> {
DpipeFieldName(&'a CStr),
DpipeFieldId(u32),
DpipeFieldBitwidth(u32),
DpipeFieldMappingType(u32),
}Available on crate feature
devlink only.Variants§
DpipeFieldName(&'a CStr)
DpipeFieldId(u32)
DpipeFieldBitwidth(u32)
DpipeFieldMappingType(u32)
Associated type: DpipeFieldMappingType (enum)
Implementations§
Source§impl DlDpipeField<'_>
impl DlDpipeField<'_>
pub fn new<'a>(buf: &'a [u8]) -> IterableDlDpipeField<'a> ⓘ
Trait Implementations§
Source§impl<'a> Clone for DlDpipeField<'a>
impl<'a> Clone for DlDpipeField<'a>
Source§fn clone(&self) -> DlDpipeField<'a>
fn clone(&self) -> DlDpipeField<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DlDpipeField<'a>
impl<'a> RefUnwindSafe for DlDpipeField<'a>
impl<'a> Send for DlDpipeField<'a>
impl<'a> Sync for DlDpipeField<'a>
impl<'a> Unpin for DlDpipeField<'a>
impl<'a> UnsafeUnpin for DlDpipeField<'a>
impl<'a> UnwindSafe for DlDpipeField<'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