pub trait AsyncInternalNominalStorageDataDeletionService {
// Required method
fn delete(
&self,
auth_: BearerToken,
request: DeleteDataRequest,
) -> impl Future<Output = Result<(), Error>> + Send;
}
Expand description
For internal user only. Contact Nominal support if you need to delete data.
Required Methods§
Sourcefn delete(
&self,
auth_: BearerToken,
request: DeleteDataRequest,
) -> impl Future<Output = Result<(), Error>> + Send
fn delete( &self, auth_: BearerToken, request: DeleteDataRequest, ) -> impl Future<Output = Result<(), Error>> + Send
Deletes stored data. This is an irreversible operation so be careful about specified time range and tag scope.
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.