#[non_exhaustive]pub enum IdFamily {
Element,
Relation,
Incidence,
}Expand description
Topology ID family keyed by a property layer.
§Performance
Copying, comparing, ordering, hashing, and debug-formatting are O(1).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Element
Element/node/vertex-keyed layer.
Relation
Relation/edge/hyperedge-keyed layer.
Incidence
Incidence/endpoint/participant-keyed layer.
Trait Implementations§
Source§impl Ord for IdFamily
impl Ord for IdFamily
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 PartialOrd for IdFamily
impl PartialOrd for IdFamily
impl Copy for IdFamily
impl Eq for IdFamily
impl StructuralPartialEq for IdFamily
Auto Trait Implementations§
impl Freeze for IdFamily
impl RefUnwindSafe for IdFamily
impl Send for IdFamily
impl Sync for IdFamily
impl Unpin for IdFamily
impl UnsafeUnpin for IdFamily
impl UnwindSafe for IdFamily
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