pub trait WithFuncs: Sized {
Show 17 methods fn with_f<K: Into<String>>(
        self,
        k: K,
        f: Box<TFunc>,
        d: &'static str
    ) -> Self; fn with_fn<K: Into<String>>(self, k: K, f: TFn, d: &'static str) -> Self { ... } fn with_defaults(self) -> Self { ... } fn with_bytes(self) -> Self { ... } fn with_rand(self) -> Self { ... } fn with_svg(self) -> Self { ... } fn with_maps(self) -> Self { ... } fn with_format(self) -> Self { ... } fn with_lists(self) -> Self { ... } fn with_strings(self) -> Self { ... } fn with_math(self) -> Self { ... } fn with_bools(self) -> Self { ... } fn with_path(self) -> Self { ... } fn with_folder_lock<P: Into<PathBuf>>(self, pb: P) -> Self { ... } fn with_free_files(self) -> Self { ... } fn with_exec(self) -> Self { ... } fn with_write_lock<P: Into<PathBuf>>(self, pb: P) -> Self { ... }
}

Required Methods

Provided Methods

Implementors