Struct netlink_packet_route::link::VfInfoTxRate
source · #[non_exhaustive]pub struct VfInfoTxRate {
pub vf_id: u32,
pub rate: u32,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.vf_id: u32
§rate: u32
Implementations§
Trait Implementations§
source§impl Clone for VfInfoTxRate
impl Clone for VfInfoTxRate
source§fn clone(&self) -> VfInfoTxRate
fn clone(&self) -> VfInfoTxRate
Returns a copy 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 VfInfoTxRate
impl Debug for VfInfoTxRate
source§impl Default for VfInfoTxRate
impl Default for VfInfoTxRate
source§fn default() -> VfInfoTxRate
fn default() -> VfInfoTxRate
Returns the “default value” for a type. Read more
source§impl Emitable for VfInfoTxRate
impl Emitable for VfInfoTxRate
source§impl<'a, T: AsRef<[u8]> + ?Sized> Parseable<VfInfoTxRateBuffer<&'a T>> for VfInfoTxRate
impl<'a, T: AsRef<[u8]> + ?Sized> Parseable<VfInfoTxRateBuffer<&'a T>> for VfInfoTxRate
source§fn parse(buf: &VfInfoTxRateBuffer<&T>) -> Result<Self, DecodeError>
fn parse(buf: &VfInfoTxRateBuffer<&T>) -> Result<Self, DecodeError>
Deserialize the current type.
source§impl PartialEq for VfInfoTxRate
impl PartialEq for VfInfoTxRate
source§fn eq(&self, other: &VfInfoTxRate) -> bool
fn eq(&self, other: &VfInfoTxRate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for VfInfoTxRate
impl Eq for VfInfoTxRate
impl StructuralEq for VfInfoTxRate
impl StructuralPartialEq for VfInfoTxRate
Auto Trait Implementations§
impl RefUnwindSafe for VfInfoTxRate
impl Send for VfInfoTxRate
impl Sync for VfInfoTxRate
impl Unpin for VfInfoTxRate
impl UnwindSafe for VfInfoTxRate
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