pub struct SubcomplexPattern {
pub cell_ids: Vec<Id>,
pub incidence_ids: Vec<Id>,
}Expand description
Minimal subcomplex pattern for exact structural overlap.
Fields§
§cell_ids: Vec<Id>Cell identifiers in the shared subcomplex.
incidence_ids: Vec<Id>Incidence identifiers in the shared subcomplex.
Trait Implementations§
Source§impl Clone for SubcomplexPattern
impl Clone for SubcomplexPattern
Source§fn clone(&self) -> SubcomplexPattern
fn clone(&self) -> SubcomplexPattern
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 SubcomplexPattern
impl Debug for SubcomplexPattern
Source§impl Default for SubcomplexPattern
impl Default for SubcomplexPattern
Source§fn default() -> SubcomplexPattern
fn default() -> SubcomplexPattern
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SubcomplexPattern
impl<'de> Deserialize<'de> for SubcomplexPattern
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 Hash for SubcomplexPattern
impl Hash for SubcomplexPattern
Source§impl Ord for SubcomplexPattern
impl Ord for SubcomplexPattern
Source§fn cmp(&self, other: &SubcomplexPattern) -> Ordering
fn cmp(&self, other: &SubcomplexPattern) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SubcomplexPattern
impl PartialEq for SubcomplexPattern
Source§fn eq(&self, other: &SubcomplexPattern) -> bool
fn eq(&self, other: &SubcomplexPattern) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SubcomplexPattern
impl PartialOrd for SubcomplexPattern
Source§impl Serialize for SubcomplexPattern
impl Serialize for SubcomplexPattern
impl Eq for SubcomplexPattern
impl StructuralPartialEq for SubcomplexPattern
Auto Trait Implementations§
impl Freeze for SubcomplexPattern
impl RefUnwindSafe for SubcomplexPattern
impl Send for SubcomplexPattern
impl Sync for SubcomplexPattern
impl Unpin for SubcomplexPattern
impl UnsafeUnpin for SubcomplexPattern
impl UnwindSafe for SubcomplexPattern
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