Trait opendal::IntoDeleteInput
source · pub trait IntoDeleteInput: Send + Sync + Unpin {
// Required method
fn into_delete_input(self) -> DeleteInput;
}
Expand description
IntoDeleteInput is a helper trait that makes it easier for users to play with Deleter
.
Required Methods§
sourcefn into_delete_input(self) -> DeleteInput
fn into_delete_input(self) -> DeleteInput
Convert self
into a DeleteInput
.
Implementations on Foreign Types§
source§impl IntoDeleteInput for &str
impl IntoDeleteInput for &str
Implement IntoDeleteInput
for &str
so we can use &str
as a DeleteInput.
fn into_delete_input(self) -> DeleteInput
source§impl IntoDeleteInput for (String, OpDelete)
impl IntoDeleteInput for (String, OpDelete)
Implement IntoDeleteInput
for (String, OpDelete)
so we can use (String, OpDelete)
as a DeleteInput stream.
fn into_delete_input(self) -> DeleteInput
source§impl IntoDeleteInput for String
impl IntoDeleteInput for String
Implement IntoDeleteInput
for String
so we can use Vec<String>
as a DeleteInput stream.
fn into_delete_input(self) -> DeleteInput
Implementors§
impl IntoDeleteInput for DeleteInput
Implement IntoDeleteInput
for DeleteInput
self.
impl IntoDeleteInput for Entry
Implement IntoDeleteInput
for Entry
so we can use Lister
as a DeleteInput stream.