pub struct NeighbourCounts {
pub left: i64,
pub right: i64,
pub unique: i64,
pub uncertain: i64,
}Fields§
§left: i64§right: i64§unique: i64§uncertain: i64Trait Implementations§
Source§impl Clone for NeighbourCounts
impl Clone for NeighbourCounts
Source§fn clone(&self) -> NeighbourCounts
fn clone(&self) -> NeighbourCounts
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 NeighbourCounts
impl Debug for NeighbourCounts
Source§impl Default for NeighbourCounts
impl Default for NeighbourCounts
Source§fn default() -> NeighbourCounts
fn default() -> NeighbourCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NeighbourCounts
impl<'de> Deserialize<'de> for NeighbourCounts
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NeighbourCounts
impl PartialEq for NeighbourCounts
Source§fn eq(&self, other: &NeighbourCounts) -> bool
fn eq(&self, other: &NeighbourCounts) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NeighbourCounts
impl Serialize for NeighbourCounts
impl StructuralPartialEq for NeighbourCounts
Auto Trait Implementations§
impl Freeze for NeighbourCounts
impl RefUnwindSafe for NeighbourCounts
impl Send for NeighbourCounts
impl Sync for NeighbourCounts
impl Unpin for NeighbourCounts
impl UnsafeUnpin for NeighbourCounts
impl UnwindSafe for NeighbourCounts
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