pub trait CreateResource<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 that returns an Option
.
pub trait CreateResource<Output> {
// Required method
fn into_resource(self) -> Result<Resource>;
}
A trait for types which can be used as a resource selection for a query that returns an Option
.