pub trait FetchBuilderModifierswhere
Self: Sized,{
// Required method
fn prepare(self) -> FetchCommand;
// Provided methods
fn build(self) -> Command { ... }
fn changed_since(self, seq: u64) -> FetchCommand { ... }
}
Required Methods§
fn prepare(self) -> FetchCommand
Provided Methods§
fn build(self) -> Command
fn changed_since(self, seq: u64) -> FetchCommand
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.