pub struct StateVectorEntry {
pub node: String,
pub seq: u64,
}Expand description
A node’s entry in the state vector: its name key and current sequence number.
Fields§
§node: StringCanonical string key for the node (typically its NDN name rendered as a URI).
seq: u64Trait Implementations§
Source§impl Clone for StateVectorEntry
impl Clone for StateVectorEntry
Source§fn clone(&self) -> StateVectorEntry
fn clone(&self) -> StateVectorEntry
Returns a duplicate 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 StateVectorEntry
impl Debug for StateVectorEntry
Source§impl PartialEq for StateVectorEntry
impl PartialEq for StateVectorEntry
impl Eq for StateVectorEntry
impl StructuralPartialEq for StateVectorEntry
Auto Trait Implementations§
impl Freeze for StateVectorEntry
impl RefUnwindSafe for StateVectorEntry
impl Send for StateVectorEntry
impl Sync for StateVectorEntry
impl Unpin for StateVectorEntry
impl UnwindSafe for StateVectorEntry
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