Trait FetchBuilderModifiers

Source
pub trait FetchBuilderModifiers: Sized {
    // Required method
    fn prepare(self) -> FetchCommand;

    // Provided methods
    fn build(self) -> Command { ... }
    fn changed_since(self, seq: u64) -> FetchCommand { ... }
}

Required Methods§

Provided Methods§

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§