#[non_exhaustive]pub struct NeighbourCacheInfo {
pub confirmed: u32,
pub used: u32,
pub updated: u32,
pub refcnt: 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.confirmed: u32
§used: u32
§updated: u32
§refcnt: u32
Trait Implementations§
source§impl Clone for NeighbourCacheInfo
impl Clone for NeighbourCacheInfo
source§fn clone(&self) -> NeighbourCacheInfo
fn clone(&self) -> NeighbourCacheInfo
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 NeighbourCacheInfo
impl Debug for NeighbourCacheInfo
source§impl Emitable for NeighbourCacheInfo
impl Emitable for NeighbourCacheInfo
source§impl<T: AsRef<[u8]>> Parseable<NeighbourCacheInfoBuffer<T>> for NeighbourCacheInfo
impl<T: AsRef<[u8]>> Parseable<NeighbourCacheInfoBuffer<T>> for NeighbourCacheInfo
source§fn parse(buf: &NeighbourCacheInfoBuffer<T>) -> Result<Self, DecodeError>
fn parse(buf: &NeighbourCacheInfoBuffer<T>) -> Result<Self, DecodeError>
Deserialize the current type.
source§impl PartialEq for NeighbourCacheInfo
impl PartialEq for NeighbourCacheInfo
source§fn eq(&self, other: &NeighbourCacheInfo) -> bool
fn eq(&self, other: &NeighbourCacheInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for NeighbourCacheInfo
impl Eq for NeighbourCacheInfo
impl StructuralEq for NeighbourCacheInfo
impl StructuralPartialEq for NeighbourCacheInfo
Auto Trait Implementations§
impl RefUnwindSafe for NeighbourCacheInfo
impl Send for NeighbourCacheInfo
impl Sync for NeighbourCacheInfo
impl Unpin for NeighbourCacheInfo
impl UnwindSafe for NeighbourCacheInfo
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