pub trait GetAllSubResource {
type Response;
// Required method
fn get_all_sub_entity<T: Into<String>>(
&self,
id: T,
entity: T,
) -> impl Future<Output = Result<Self::Response>>;
}Required Associated Types§
Required Methods§
fn get_all_sub_entity<T: Into<String>>( &self, id: T, entity: T, ) -> impl Future<Output = Result<Self::Response>>
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.