Struct netlink_packet_route::address::CacheInfo
source · #[non_exhaustive]pub struct CacheInfo {
pub ifa_preferred: u32,
pub ifa_valid: u32,
pub cstamp: u32,
pub tstamp: 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.ifa_preferred: u32
§ifa_valid: u32
§cstamp: u32
§tstamp: u32
Trait Implementations§
source§impl<T: AsRef<[u8]>> Parseable<CacheInfoBuffer<T>> for CacheInfo
impl<T: AsRef<[u8]>> Parseable<CacheInfoBuffer<T>> for CacheInfo
source§fn parse(buf: &CacheInfoBuffer<T>) -> Result<Self, DecodeError>
fn parse(buf: &CacheInfoBuffer<T>) -> Result<Self, DecodeError>
Deserialize the current type.
source§impl PartialEq for CacheInfo
impl PartialEq for CacheInfo
impl Copy for CacheInfo
impl Eq for CacheInfo
impl StructuralEq for CacheInfo
impl StructuralPartialEq for CacheInfo
Auto Trait Implementations§
impl RefUnwindSafe for CacheInfo
impl Send for CacheInfo
impl Sync for CacheInfo
impl Unpin for CacheInfo
impl UnwindSafe for CacheInfo
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