Trait FetchBuilderMessages

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

    // Provided methods
    fn num(self, num: u32) -> FetchCommandMessages { ... }
    fn range(self, start: u32, stop: u32) -> FetchCommandMessages { ... }
    fn all_after(self, start: u32) -> FetchCommandMessages { ... }
}

Required Methods§

Provided Methods§

Source

fn num(self, num: u32) -> FetchCommandMessages

Source

fn range(self, start: u32, stop: u32) -> FetchCommandMessages

Source

fn all_after(self, start: u32) -> FetchCommandMessages

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§