Skip to main content

EdgeView

Struct EdgeView 

Source
pub struct EdgeView<G> {
    pub graph: G,
    pub edge: EdgeRef,
}
Expand description

A view of an edge in the graph.

Fields§

§graph: G

A view of an edge in the graph.

§edge: EdgeRef

A reference to the edge.

Implementations§

Source§

impl<'graph, G: GraphViewOps<'graph>> EdgeView<G>

Source

pub fn new(graph: G, edge: EdgeRef) -> Self

Source§

impl<G: Clone> EdgeView<&G>

Source

pub fn cloned(&self) -> EdgeView<G>

Source§

impl<G> EdgeView<G>

Source

pub fn as_ref(&self) -> EdgeView<&G>

Source§

impl<G: IntoDynamic> EdgeView<G>

Source§

impl<G: GraphView> EdgeView<G>

Source§

impl<G: StaticGraphViewOps + InternalAdditionOps<Error = GraphError> + InternalPropertyAdditionOps<Error = GraphError> + InternalDeletionOps<Error = GraphError>> EdgeView<G>

Source

pub fn delete<T: TryIntoInputTime>( &self, t: T, layer: Option<&str>, ) -> Result<(), GraphError>

Source§

impl<G: StaticGraphViewOps + PropertyAdditionOps + AdditionOps> EdgeView<G>

Source

pub fn add_metadata<C: CollectProperties>( &self, properties: C, layer: Option<&str>, ) -> Result<(), GraphError>

Add metadata for the edge

§Arguments
  • properties - Property key-value pairs to add
  • layer - The layer to which properties should be added. If the edge view is restricted to a single layer, ‘None’ will add the properties to that layer and ‘Some(“name”)’ fails unless the layer matches the edge view. If the edge view is not restricted to a single layer, ‘None’ sets the properties on the default layer and ‘Some(“name”)’ sets the properties on layer ‘“name”’ and fails if that layer doesn’t exist.

Returns: Ok(()) if metadata added successfully. Err(GraphError) if the operation fails.

Source

pub fn update_metadata<C: CollectProperties>( &self, props: C, layer: Option<&str>, ) -> Result<(), GraphError>

Source

pub fn add_updates<C: CollectProperties, T: TryIntoInputTime>( &self, time: T, props: C, layer: Option<&str>, ) -> Result<(), GraphError>

Trait Implementations§

Source§

impl<G: Clone> Clone for EdgeView<G>

Source§

fn clone(&self) -> EdgeView<G>

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<'graph, G: GraphViewOps<'graph>> Debug for EdgeView<G>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<G> From<EdgeView<G>> for EdgeRef

Source§

fn from(value: EdgeView<G>) -> Self

Converts to this type from the input type.
Source§

impl<'graph, G1: GraphViewOps<'graph>> Hash for EdgeView<G1>

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<G: BoxableGraphView + Clone> InternalDeletionOps for EdgeView<G>

Source§

fn iter(&self) -> BoxedLIter<'_, EventTime>

Iterate over deletion time entries in chronological order.
Source§

fn iter_rev(&self) -> BoxedLIter<'_, EventTime>

Iterate over deletion time entries in reverse chronological order.
Source§

fn earliest_time(&self) -> Option<EventTime>

Get the earliest deletion’s time entry for this item.
Source§

fn latest_time(&self) -> Option<EventTime>

Get the latest deletion’s time entry for this item.
Source§

fn first(&self) -> Option<EventTime>

Get the first deletion’s time entry produced by forward iteration.
Source§

fn last(&self) -> Option<EventTime>

Get the first deletion’s time entry produced by reverse iteration.
Source§

fn len(&self) -> usize

Get the number of deletion time entries held by this item.
Source§

impl<'graph, Current> InternalFilter<'graph> for EdgeView<Current>
where Current: GraphViewOps<'graph>,

Source§

type Graph = Current

Source§

type Filtered<Next: GraphViewOps<'graph>> = EdgeView<Next>

Source§

fn base_graph(&self) -> &Self::Graph

Source§

fn apply_filter<Next: GraphViewOps<'graph> + 'graph>( &self, filtered_graph: Next, ) -> Self::Filtered<Next>

Source§

impl<G: BoxableGraphView + Clone> InternalHistoryOps for EdgeView<G>

Source§

fn iter(&self) -> BoxedLIter<'_, EventTime>

Iterate over temporal entries in chronological order.
Source§

fn iter_rev(&self) -> BoxedLIter<'_, EventTime>

Iterate over temporal entries in reverse chronological order.
Source§

fn earliest_time(&self) -> Option<EventTime>

Get the earliest time entry for this item.
Source§

fn latest_time(&self) -> Option<EventTime>

Get the latest time entry for this item.
Source§

fn len(&self) -> usize

Get the number of time entries held by this item.
Source§

fn first(&self) -> Option<EventTime>

Get the first time entry produced by forward iteration.
Source§

fn last(&self) -> Option<EventTime>

Get the first time entry produced by reverse iteration.
Source§

impl<'graph, G: GraphViewOps<'graph>> InternalMetadataOps for EdgeView<G>

Source§

fn get_metadata_id(&self, name: &str) -> Option<usize>

Find id for property name (note this only checks the meta-data, not if the property actually exists for the entity)
Source§

fn get_metadata_name(&self, id: usize) -> ArcStr

Source§

fn metadata_ids(&self) -> BoxedLIter<'_, usize>

Source§

fn metadata_keys(&self) -> BoxedLIter<'_, ArcStr>

Source§

fn get_metadata(&self, id: usize) -> Option<Prop>

Source§

fn metadata_values(&self) -> BoxedLIter<'_, Option<Prop>>

Source§

impl<'graph, G: GraphViewOps<'graph>> InternalTemporalPropertiesOps for EdgeView<G>

Source§

impl<G: GraphView> InternalTemporalPropertyViewOps for EdgeView<G>

Source§

impl<G: BoxableGraphView + Clone + 'static> IntoArcDynHistoryOps for EdgeView<G>

Source§

fn into_arc_dyn(self) -> Arc<dyn InternalHistoryOps>

Convert this InternalHistoryOps into an Arc to enable dynamic dispatch and sharing (through Send + Sync). Particularly useful for Python.
Source§

impl<'graph_1, G1: GraphViewOps<'graph_1>> Ord for EdgeView<G1>

Source§

fn cmp(&self, other: &EdgeView<G1>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<'graph_1, 'graph_2, G1: GraphViewOps<'graph_1>, G2: GraphViewOps<'graph_2>> PartialEq<EdgeView<G2>> for EdgeView<G1>

Source§

fn eq(&self, other: &EdgeView<G2>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'graph_1, 'graph_2, G1: GraphViewOps<'graph_1>, G2: GraphViewOps<'graph_2>> PartialOrd<EdgeView<G2>> for EdgeView<G1>

Source§

fn partial_cmp(&self, other: &EdgeView<G2>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<G: Copy> Copy for EdgeView<G>

Source§

impl<'graph, G: GraphViewOps<'graph>> Eq for EdgeView<G>

Source§

impl<G> Static for EdgeView<G>

Auto Trait Implementations§

§

impl<G> Freeze for EdgeView<G>
where G: Freeze,

§

impl<G> RefUnwindSafe for EdgeView<G>
where G: RefUnwindSafe,

§

impl<G> Send for EdgeView<G>
where G: Send,

§

impl<G> Sync for EdgeView<G>
where G: Sync,

§

impl<G> Unpin for EdgeView<G>
where G: Unpin,

§

impl<G> UnsafeUnpin for EdgeView<G>
where G: UnsafeUnpin,

§

impl<G> UnwindSafe for EdgeView<G>
where G: UnwindSafe,

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<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<T> DynEq for T
where T: Eq + Any,

Source§

fn dyn_eq(&self, other: &(dyn Any + 'static)) -> bool

Source§

impl<T> DynHash for T
where T: Hash + Any,

Source§

fn dyn_hash(&self, state: &mut dyn Hasher)

Source§

impl<'graph, E> EdgeViewOps<'graph> for E
where E: BaseEdgeViewOps<'graph>,

Source§

fn history( &self, ) -> <E as EdgeViewOps<'graph>>::ValueType<History<'graph, EdgeView<<E as EdgeViewOps<'graph>>::Graph>>>

History object for the edge

Source§

fn deletions( &self, ) -> <E as EdgeViewOps<'graph>>::ValueType<History<'graph, DeletionHistory<EdgeView<<E as EdgeViewOps<'graph>>::Graph>>>>

Returns: History:

Source§

fn is_valid(&self) -> <E as EdgeViewOps<'graph>>::ValueType<bool>

Returns: boolean:

Source§

fn is_deleted(&self) -> <E as EdgeViewOps<'graph>>::ValueType<bool>

Returns: boolean:

Source§

fn is_self_loop(&self) -> <E as EdgeViewOps<'graph>>::ValueType<bool>

Returns true if the source and destination nodes are identical.

Returns: boolean:

Source§

fn properties( &self, ) -> <E as EdgeViewOps<'graph>>::ValueType<Properties<<E as EdgeViewOps<'graph>>::PropType>>

Returns a view of the properties of the edge

Returns: properties:

Source§

fn metadata( &self, ) -> <E as EdgeViewOps<'graph>>::ValueType<Metadata<'graph, <E as EdgeViewOps<'graph>>::PropType>>

Returns: metadata:

Source§

fn src(&self) -> <E as EdgeViewOps<'graph>>::Nodes

Returns the source node of the edge.

Returns: Nodes:

Source§

fn dst(&self) -> <E as EdgeViewOps<'graph>>::Nodes

Returns the destination node of the edge.

Returns: Nodes:

Source§

fn nbr(&self) -> <E as EdgeViewOps<'graph>>::Nodes

Returns: Nodes:

Source§

fn is_active(&self) -> <E as EdgeViewOps<'graph>>::ValueType<bool>

Check if an edge is active (has some update within the current bound) at a given time point.

Returns: bool:

Source§

fn explode(&self) -> <E as EdgeViewOps<'graph>>::Exploded

Explodes an edge and returns all instances it had been updated as seperate edges

Source§

fn earliest_time( &self, ) -> <E as EdgeViewOps<'graph>>::ValueType<Option<EventTime>>

Gets the first time an edge was seen

Source§

fn latest_time( &self, ) -> <E as EdgeViewOps<'graph>>::ValueType<Option<EventTime>>

Gets the latest time an edge was updated

Source§

fn time( &self, ) -> <E as EdgeViewOps<'graph>>::ValueType<Result<EventTime, GraphError>>

Gets the time of the edge if it is exploded

Source§

fn layer_name( &self, ) -> <E as EdgeViewOps<'graph>>::ValueType<Result<ArcStr, GraphError>>

Gets the layer name for the edge if it is restricted to a single layer

Source§

fn time_and_event_id( &self, ) -> <E as EdgeViewOps<'graph>>::ValueType<Result<EventTime, GraphError>>

Gets the EventTime if the edge is exploded

Source§

fn layer_names(&self) -> <E as EdgeViewOps<'graph>>::ValueType<Vec<ArcStr>>

Gets the name of the layer this edge belongs to

Source§

type ValueType<T: 'graph> = <E as BaseEdgeViewOps<'graph>>::ValueType<T>

Source§

type PropType = <E as BaseEdgeViewOps<'graph>>::PropType

Source§

type Graph = <E as BaseEdgeViewOps<'graph>>::Graph

Source§

type Nodes = <E as BaseEdgeViewOps<'graph>>::Nodes

Source§

type Exploded = <E as BaseEdgeViewOps<'graph>>::Exploded

Source§

fn id(&self) -> <E as EdgeViewOps<'graph>>::ValueType<(GID, GID)>

Returns the id of the edge. Read more
Source§

fn explode_layers(&self) -> <E as EdgeViewOps<'graph>>::Exploded

Returns: Edges:
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<'graph, T> Filter<'graph> for T
where T: InternalFilter<'graph>,

Source§

fn filter<F: CreateFilter>( &self, filter: F, ) -> Result<Self::Filtered<F::EntityFiltered<'graph, F::FilteredGraph<'graph, Self::Graph>>>, GraphError>

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoDynHop for T
where T: InternalFilter<'static>, <T as InternalFilter<'static>>::Graph: IntoDynamic + Clone,

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<'graph, V> LayerOps<'graph> for V
where V: InternalFilter<'graph> + 'graph,

Source§

type LayeredViewType = <V as InternalFilter<'graph>>::Filtered<LayeredGraph<<V as InternalFilter<'graph>>::Graph>>

Source§

fn default_layer(&self) -> <V as LayerOps<'graph>>::LayeredViewType

Return a graph containing only the default edge layer
Source§

fn layers<L>( &self, layers: L, ) -> Result<<V as LayerOps<'graph>>::LayeredViewType, GraphError>
where L: Into<Layer>,

Return a graph containing the layers in names. Errors if one or more of the layers do not exists.
Source§

fn exclude_layers<L>( &self, layers: L, ) -> Result<<V as LayerOps<'graph>>::LayeredViewType, GraphError>
where L: Into<Layer>,

Return a graph containing the excluded layers in names. Errors if one or more of the layers do not exists.
Source§

fn exclude_valid_layers<L>( &self, layers: L, ) -> <V as LayerOps<'graph>>::LayeredViewType
where L: Into<Layer>,

Source§

fn has_layer<L>(&self, name: L) -> bool
where L: SingleLayer,

Check if name is a valid layer name
Source§

fn valid_layers<L>(&self, names: L) -> <V as LayerOps<'graph>>::LayeredViewType
where L: Into<Layer>,

Return a graph containing the layers in names. Any layers that do not exist are ignored.
Source§

fn num_layers(&self) -> usize

Returns the number of layers
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<'graph, V> TimeOps<'graph> for V
where V: InternalFilter<'graph> + 'graph + InternalTimeOps<'graph>,

Source§

type WindowedViewType = <V as InternalTimeOps<'graph>>::InternalWindowedView

Source§

fn start(&self) -> Option<EventTime>

Return the time entry of the start of the view or None if the view start is unbounded.
Source§

fn end(&self) -> Option<EventTime>

Return the time entry of the view or None if the view end is unbounded.
Source§

fn shrink_start<T>(&self, start: T) -> <V as TimeOps<'graph>>::WindowedViewType
where T: IntoTime,

set the start of the window to the larger of start and self.start()
Source§

fn shrink_end<T>(&self, end: T) -> <V as TimeOps<'graph>>::WindowedViewType
where T: IntoTime,

set the end of the window to the smaller of end and self.end()
Source§

fn shrink_window<T>( &self, start: T, end: T, ) -> <V as TimeOps<'graph>>::WindowedViewType
where T: IntoTime,

shrink both the start and end of the window (same as calling shrink_start followed by shrink_end but more efficient)
Source§

fn window_size(&self) -> Option<u64>

Return the size of the window covered by this view or None if the window is unbounded
Source§

fn window<T1, T2>( &self, start: T1, end: T2, ) -> <V as TimeOps<'graph>>::WindowedViewType
where T1: IntoTime, T2: IntoTime,

Create a view including all events between start (inclusive) and end (exclusive)
Source§

fn at<T>(&self, time: T) -> <V as TimeOps<'graph>>::WindowedViewType
where T: IntoTime,

Create a view that only includes events at time
Source§

fn latest(&self) -> <V as TimeOps<'graph>>::WindowedViewType

Create a view that only includes events at the latest time
Source§

fn snapshot_at<T>(&self, time: T) -> <V as TimeOps<'graph>>::WindowedViewType
where T: IntoTime,

Create a view including all events that have not been explicitly deleted at time Read more
Source§

fn snapshot_latest(&self) -> <V as TimeOps<'graph>>::WindowedViewType

Create a view including all events that have not been explicitly deleted at the latest time Read more
Source§

fn after<T>(&self, start: T) -> <V as TimeOps<'graph>>::WindowedViewType
where T: IntoTime,

Create a view that only includes events after start (exclusive)
Source§

fn before<T>(&self, end: T) -> <V as TimeOps<'graph>>::WindowedViewType
where T: IntoTime,

Create a view that only includes events before end (exclusive)
Source§

fn expanding<I>(&self, step: I) -> Result<WindowSet<'graph, V>, ParseTimeError>
where V: Clone + 'graph, I: TryInto<Interval> + Clone, ParseTimeError: From<<I as TryInto<Interval>>::Error>,

Creates a WindowSet with the given step size using an expanding window. The last window may fall partially outside the range of the data/view. Read more
Source§

fn expanding_aligned<I>( &self, step: I, alignment_unit: AlignmentUnit, ) -> Result<WindowSet<'graph, V>, ParseTimeError>
where V: Clone + 'graph, I: TryInto<Interval>, ParseTimeError: From<<I as TryInto<Interval>>::Error>,

Creates a WindowSet with the given step size using an expanding window, where the windows are aligned with the alignment_unit passed. The last window may fall partially outside the range of the data/view. Read more
Source§

fn rolling<I>( &self, window: I, step: Option<I>, ) -> Result<WindowSet<'graph, V>, ParseTimeError>
where V: Clone + 'graph, I: TryInto<Interval> + Clone, ParseTimeError: From<<I as TryInto<Interval>>::Error>,

Creates a WindowSet with the given window size and optional step using a rolling window. The last window may fall partially outside the range of the data/view. Note that passing a step larger than window can lead to some entries appearing before the start of the first window and/or after the end of the last window (i.e. not included in any window) Read more
Source§

fn rolling_aligned<I>( &self, window: I, step: Option<I>, alignment_unit: AlignmentUnit, ) -> Result<WindowSet<'graph, V>, ParseTimeError>
where V: Clone + 'graph, I: TryInto<Interval>, ParseTimeError: From<<I as TryInto<Interval>>::Error>,

Creates a WindowSet with the given window size and optional step using a rolling window, where the windows are aligned with the alignment_unit passed. The last window may fall partially outside the range of the data/view. Note that, depending on the alignment_unit, passing a step larger than window can lead to some entries appearing before the start of the first window and/or after the end of the last window (i.e. not included in any window) Read more
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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

Source§

impl<P> InternalPropertiesOps for P

Source§

impl<N> NodeTrait for N
where N: Copy + Ord + Hash,

Source§

impl<T> StateType for T
where T: PartialEq + Clone + Debug + Send + Sync + 'static,