pub trait LibraryExt {
// Required methods
fn default() -> Library;
fn builder() -> LibraryBuilder;
}Expand description
Provides ways to construct a Library.
Required Methods§
Sourcefn builder() -> LibraryBuilder
fn builder() -> LibraryBuilder
Creates a builder for configuring a library.
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.