pub trait SwhGraphWithProperties: SwhGraph {
    type Maps: MaybeMaps;
    type Timestamps: MaybeTimestamps;
    type Persons: MaybePersons;
    type Contents: MaybeContents;
    type Strings: MaybeStrings;
    type LabelNames: MaybeLabelNames;

    // Required method
    fn properties(
        &self
    ) -> &SwhGraphProperties<Self::Maps, Self::Timestamps, Self::Persons, Self::Contents, Self::Strings, Self::LabelNames>;
}

Required Associated Types§

Required Methods§

source

fn properties( &self ) -> &SwhGraphProperties<Self::Maps, Self::Timestamps, Self::Persons, Self::Contents, Self::Strings, Self::LabelNames>

Implementors§

source§

impl<G: SwhGraphWithProperties> SwhGraphWithProperties for GraphSpy<G>

source§

impl<G: SwhGraphWithProperties> SwhGraphWithProperties for Transposed<G>

source§

impl<G: SwhGraphWithProperties, NodeFilter: Fn(usize) -> bool, ArcFilter: Fn(usize, usize) -> bool> SwhGraphWithProperties for Subgraph<G, NodeFilter, ArcFilter>

source§

impl<MAPS: MaybeMaps, TIMESTAMPS: MaybeTimestamps, PERSONS: MaybePersons, CONTENTS: MaybeContents, STRINGS: MaybeStrings, LABELNAMES: MaybeLabelNames, BG: UnderlyingGraph, FG: UnderlyingGraph> SwhGraphWithProperties for SwhBidirectionalGraph<SwhGraphProperties<MAPS, TIMESTAMPS, PERSONS, CONTENTS, STRINGS, LABELNAMES>, FG, BG>

§

type Maps = MAPS

§

type Timestamps = TIMESTAMPS

§

type Persons = PERSONS

§

type Contents = CONTENTS

§

type Strings = STRINGS

§

type LabelNames = LABELNAMES

source§

impl<MAPS: MaybeMaps, TIMESTAMPS: MaybeTimestamps, PERSONS: MaybePersons, CONTENTS: MaybeContents, STRINGS: MaybeStrings, LABELNAMES: MaybeLabelNames, G: UnderlyingGraph> SwhGraphWithProperties for SwhUnidirectionalGraph<SwhGraphProperties<MAPS, TIMESTAMPS, PERSONS, CONTENTS, STRINGS, LABELNAMES>, G>

§

type Maps = MAPS

§

type Timestamps = TIMESTAMPS

§

type Persons = PERSONS

§

type Contents = CONTENTS

§

type Strings = STRINGS

§

type LabelNames = LABELNAMES

source§

impl<T: Deref> SwhGraphWithProperties for Twhere <T as Deref>::Target: SwhGraphWithProperties,