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§
type Maps: MaybeMaps
type Timestamps: MaybeTimestamps
type Persons: MaybePersons
type Contents: MaybeContents
type Strings: MaybeStrings
type LabelNames: MaybeLabelNames
Required Methods§
fn properties( &self, ) -> &SwhGraphProperties<Self::Maps, Self::Timestamps, Self::Persons, Self::Contents, Self::Strings, Self::LabelNames>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.