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
Implement IntoDeleteInput for &str so we can use &str as a DeleteInput.
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)
Implement IntoDeleteInput for (String, OpDelete) so we can use (String, OpDelete)
as a DeleteInput stream.
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
Implement IntoDeleteInput for String so we can use Vec<String> as a DeleteInput stream.
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.