Skip to main content

HyperPropertyLayers

Struct HyperPropertyLayers 

Source
pub struct HyperPropertyLayers<'view, Id, VertexIndex, RelationIndex, IncidenceIndex>
where VertexIndex: PropertyIndex, RelationIndex: PropertyIndex, IncidenceIndex: PropertyIndex,
{ pub element: &'view [PropertyLayer<Id, VertexIndex>], pub relation: &'view [PropertyLayer<Id, RelationIndex>], pub incidence: &'view [PropertyLayer<Id, IncidenceIndex>], }
Expand description

Borrowed hypergraph property layers partitioned by topology ID family.

§Performance

Copying this struct is O(1).

Fields§

§element: &'view [PropertyLayer<Id, VertexIndex>]

Element/vertex-keyed property layers.

§relation: &'view [PropertyLayer<Id, RelationIndex>]

Relation/hyperedge-keyed property layers.

§incidence: &'view [PropertyLayer<Id, IncidenceIndex>]

Incidence/participant-keyed property layers.

Trait Implementations§

Source§

impl<'view, Id: Clone, VertexIndex, RelationIndex, IncidenceIndex> Clone for HyperPropertyLayers<'view, Id, VertexIndex, RelationIndex, IncidenceIndex>
where VertexIndex: PropertyIndex + Clone, RelationIndex: PropertyIndex + Clone, IncidenceIndex: PropertyIndex + Clone,

Source§

fn clone( &self, ) -> HyperPropertyLayers<'view, Id, VertexIndex, RelationIndex, IncidenceIndex>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'view, Id: Copy, VertexIndex, RelationIndex, IncidenceIndex> Copy for HyperPropertyLayers<'view, Id, VertexIndex, RelationIndex, IncidenceIndex>
where VertexIndex: PropertyIndex + Copy, RelationIndex: PropertyIndex + Copy, IncidenceIndex: PropertyIndex + Copy,

Source§

impl<'view, Id: Debug, VertexIndex, RelationIndex, IncidenceIndex> Debug for HyperPropertyLayers<'view, Id, VertexIndex, RelationIndex, IncidenceIndex>
where VertexIndex: PropertyIndex + Debug, RelationIndex: PropertyIndex + Debug, IncidenceIndex: PropertyIndex + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'view, Id, VertexIndex, RelationIndex, IncidenceIndex> !RefUnwindSafe for HyperPropertyLayers<'view, Id, VertexIndex, RelationIndex, IncidenceIndex>

§

impl<'view, Id, VertexIndex, RelationIndex, IncidenceIndex> !UnwindSafe for HyperPropertyLayers<'view, Id, VertexIndex, RelationIndex, IncidenceIndex>

§

impl<'view, Id, VertexIndex, RelationIndex, IncidenceIndex> Freeze for HyperPropertyLayers<'view, Id, VertexIndex, RelationIndex, IncidenceIndex>

§

impl<'view, Id, VertexIndex, RelationIndex, IncidenceIndex> Send for HyperPropertyLayers<'view, Id, VertexIndex, RelationIndex, IncidenceIndex>
where Id: Sync, VertexIndex: Sync + Send, RelationIndex: Sync + Send, IncidenceIndex: Sync + Send,

§

impl<'view, Id, VertexIndex, RelationIndex, IncidenceIndex> Sync for HyperPropertyLayers<'view, Id, VertexIndex, RelationIndex, IncidenceIndex>
where Id: Sync, VertexIndex: Sync + Send, RelationIndex: Sync + Send, IncidenceIndex: Sync + Send,

§

impl<'view, Id, VertexIndex, RelationIndex, IncidenceIndex> Unpin for HyperPropertyLayers<'view, Id, VertexIndex, RelationIndex, IncidenceIndex>

§

impl<'view, Id, VertexIndex, RelationIndex, IncidenceIndex> UnsafeUnpin for HyperPropertyLayers<'view, Id, VertexIndex, RelationIndex, IncidenceIndex>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.