pub trait ContainsEndpoint: ContainsIncidence {
// Provided method
fn contains_endpoint(&self, endpoint: Self::IncidenceId) -> bool { ... }
}Expand description
Endpoint-ID containment capability for graph views with incidences.
Graph-facing name for ContainsIncidence.
Provided Methods§
Sourcefn contains_endpoint(&self, endpoint: Self::IncidenceId) -> bool
fn contains_endpoint(&self, endpoint: Self::IncidenceId) -> bool
Returns whether endpoint is valid and visible in this graph view.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".