pub struct NeighborhoodItem {
pub about: String,
pub reference: String,
pub state: String,
pub kind: String,
pub reason: String,
pub text: Option<String>,
pub text_omitted: bool,
pub clocks: BTreeMap<String, Vec<String>>,
}Expand description
Literal material for a writer to review, never a generated conclusion.
Fields§
§about: String§reference: String§state: String§kind: String§reason: String§text: Option<String>§text_omitted: bool§clocks: BTreeMap<String, Vec<String>>Trait Implementations§
Source§impl Clone for NeighborhoodItem
impl Clone for NeighborhoodItem
Source§fn clone(&self) -> NeighborhoodItem
fn clone(&self) -> NeighborhoodItem
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 NeighborhoodItem
impl Debug for NeighborhoodItem
impl Eq for NeighborhoodItem
Source§impl PartialEq for NeighborhoodItem
impl PartialEq for NeighborhoodItem
Source§impl Serialize for NeighborhoodItem
impl Serialize for NeighborhoodItem
impl StructuralPartialEq for NeighborhoodItem
Auto Trait Implementations§
impl Freeze for NeighborhoodItem
impl RefUnwindSafe for NeighborhoodItem
impl Send for NeighborhoodItem
impl Sync for NeighborhoodItem
impl Unpin for NeighborhoodItem
impl UnsafeUnpin for NeighborhoodItem
impl UnwindSafe for NeighborhoodItem
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