Skip to main content

UniversalOptionsExt

Trait UniversalOptionsExt 

Source
pub trait UniversalOptionsExt: HasUniversal + Sized {
    // Provided methods
    fn time_limit(self, d: Duration) -> Self { ... }
    fn threads(self, n: u32) -> Self { ... }
    fn verbose(self, on: bool) -> Self { ... }
}
Expand description

Builder setters available on every backend options struct.

Provided Methods§

Source

fn time_limit(self, d: Duration) -> Self

Source

fn threads(self, n: u32) -> Self

Source

fn verbose(self, on: bool) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§