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