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§
Sourcetype Search<'a>
type Search<'a>
Argument to Stream::search.
Sourcetype Insert<'a>
type Insert<'a>
Argument to Stream::insert.
Sourcetype Replace<'a>
type Replace<'a>
Argument to Stream::replace.
Sourcetype Delete<'a>
type Delete<'a>
Argument to Stream::delete.
Sourcetype Maintain<'a>
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.