pub struct WriteNeighborhood {
pub token: String,
pub items: Vec<NeighborhoodItem>,
pub links: Vec<NeighborhoodLink>,
pub eligible: usize,
pub omitted: usize,
pub omitted_conflicts: usize,
pub abouts: Vec<String>,
pub partial: bool,
}Expand description
A bounded review of explicit scope. Its fingerprint covers complete selected source material, including material omitted from the compact representation.
Fields§
§token: String§items: Vec<NeighborhoodItem>§links: Vec<NeighborhoodLink>§eligible: usize§omitted: usize§omitted_conflicts: usize§abouts: Vec<String>§partial: boolTrait Implementations§
Source§impl Clone for WriteNeighborhood
impl Clone for WriteNeighborhood
Source§fn clone(&self) -> WriteNeighborhood
fn clone(&self) -> WriteNeighborhood
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WriteNeighborhood
impl Debug for WriteNeighborhood
impl Eq for WriteNeighborhood
Source§impl PartialEq for WriteNeighborhood
impl PartialEq for WriteNeighborhood
Source§impl Serialize for WriteNeighborhood
impl Serialize for WriteNeighborhood
impl StructuralPartialEq for WriteNeighborhood
Auto Trait Implementations§
impl Freeze for WriteNeighborhood
impl RefUnwindSafe for WriteNeighborhood
impl Send for WriteNeighborhood
impl Sync for WriteNeighborhood
impl Unpin for WriteNeighborhood
impl UnsafeUnpin for WriteNeighborhood
impl UnwindSafe for WriteNeighborhood
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