pub trait AttributeAPI:
ThingAPI
+ Clone
+ Into<Attribute> {
// Provided method
fn get_owners<'tx>(
&self,
transaction: &'tx Transaction<'_>,
thing_type: Option<ThingType>,
) -> Result<BoxStream<'tx, Result<Thing>>> { ... }
}Provided Methods§
Sourcefn get_owners<'tx>(
&self,
transaction: &'tx Transaction<'_>,
thing_type: Option<ThingType>,
) -> Result<BoxStream<'tx, Result<Thing>>>
fn get_owners<'tx>( &self, transaction: &'tx Transaction<'_>, thing_type: Option<ThingType>, ) -> Result<BoxStream<'tx, Result<Thing>>>
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.