Skip to main content

Arguments

Trait Arguments 

Source
pub trait Arguments: 'static {
    type Search<'a>;
    type Insert<'a>;
    type Replace<'a>;
    type Delete<'a>;
    type Maintain<'a>;
}
Expand description

Operation arguments to Stream.

Required Associated Types§

Source

type Search<'a>

Argument to Stream::search.

Source

type Insert<'a>

Argument to Stream::insert.

Source

type Replace<'a>

Argument to Stream::replace.

Source

type Delete<'a>

Argument to Stream::delete.

Source

type Maintain<'a>

Argument to Stream::maintain.

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.

Implementors§