pub unsafe trait SKProductsRequestDelegate: SKRequestDelegate {
// Provided method
unsafe fn productsRequest_didReceiveResponse(
&self,
request: &SKProductsRequest,
response: &SKProductsResponse,
)
where Self: Sized + Message { ... }
}👎Deprecated:
Get products using Product.products(for:)
Available on crate features
SKProductsRequest and SKRequest only.Expand description
Provided Methods§
unsafe fn productsRequest_didReceiveResponse( &self, request: &SKProductsRequest, response: &SKProductsResponse, )
👎Deprecated:
Get products using Product.products(for:)
Trait Implementations§
impl<T> ImplementedBy<T> for dyn SKProductsRequestDelegate
Source§impl ProtocolType for dyn SKProductsRequestDelegate
impl ProtocolType for dyn SKProductsRequestDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".