pub trait IntoResource<Output> {
// Required method
fn into_resource(self) -> Result<Resource>;
}
Expand description
A trait for types which can be used as a resource selection for a query.
pub trait IntoResource<Output> {
// Required method
fn into_resource(self) -> Result<Resource>;
}
A trait for types which can be used as a resource selection for a query.