Trait 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§

Source

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.

Source§

impl IntoDeleteInput for (String, OpDelete)

Implement IntoDeleteInput for (String, OpDelete) so we can use (String, OpDelete) as a DeleteInput stream.

Source§

impl IntoDeleteInput for String

Implement IntoDeleteInput for String so we can use Vec<String> as a DeleteInput stream.

Implementors§

Source§

impl IntoDeleteInput for DeleteInput

Implement IntoDeleteInput for DeleteInput self.

Source§

impl IntoDeleteInput for Entry

Implement IntoDeleteInput for Entry so we can use Lister as a DeleteInput stream.