pub trait DeprovisionProxyInterface: Send + Sync {
    type RemoveOwnershipResponseFut: Future<Output = Result<DeprovisionRemoveOwnershipResult, Error>> + Send;

    // Required method
    fn remove_ownership(
        &self,
        payload: &DeprovisionRemoveOwnershipRequest
    ) -> Self::RemoveOwnershipResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§