Struct netlink_packet_route::link::VfInfoSpoofCheck
source · #[non_exhaustive]pub struct VfInfoSpoofCheck {
pub vf_id: u32,
pub enabled: bool,
}
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
§enabled: bool
Implementations§
Trait Implementations§
source§impl Clone for VfInfoSpoofCheck
impl Clone for VfInfoSpoofCheck
source§fn clone(&self) -> VfInfoSpoofCheck
fn clone(&self) -> VfInfoSpoofCheck
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 VfInfoSpoofCheck
impl Debug for VfInfoSpoofCheck
source§impl Default for VfInfoSpoofCheck
impl Default for VfInfoSpoofCheck
source§fn default() -> VfInfoSpoofCheck
fn default() -> VfInfoSpoofCheck
Returns the “default value” for a type. Read more
source§impl Emitable for VfInfoSpoofCheck
impl Emitable for VfInfoSpoofCheck
source§impl<'a, T: AsRef<[u8]> + ?Sized> Parseable<VfInfoSpoofCheckBuffer<&'a T>> for VfInfoSpoofCheck
impl<'a, T: AsRef<[u8]> + ?Sized> Parseable<VfInfoSpoofCheckBuffer<&'a T>> for VfInfoSpoofCheck
source§fn parse(buf: &VfInfoSpoofCheckBuffer<&T>) -> Result<Self, DecodeError>
fn parse(buf: &VfInfoSpoofCheckBuffer<&T>) -> Result<Self, DecodeError>
Deserialize the current type.
source§impl PartialEq for VfInfoSpoofCheck
impl PartialEq for VfInfoSpoofCheck
source§fn eq(&self, other: &VfInfoSpoofCheck) -> bool
fn eq(&self, other: &VfInfoSpoofCheck) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for VfInfoSpoofCheck
impl Eq for VfInfoSpoofCheck
impl StructuralEq for VfInfoSpoofCheck
impl StructuralPartialEq for VfInfoSpoofCheck
Auto Trait Implementations§
impl RefUnwindSafe for VfInfoSpoofCheck
impl Send for VfInfoSpoofCheck
impl Sync for VfInfoSpoofCheck
impl Unpin for VfInfoSpoofCheck
impl UnwindSafe for VfInfoSpoofCheck
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