Enum mdbook_angular::Builder
source · pub enum Builder {
Experimental,
Background,
Slow,
}
Variants§
Experimental
Build all chapters in a single angular build.
This is fast, but uses internal Angular APIs to use the currently experimental “application” builder Angular provides as of 16.2.0.
Background
Build via Builder::Experimental
in a background process.
This allows the angular process to keep running after the renderer exits. This builder option enables watching, which significantly speeds up rebuilds.
This option is not supported on Windows, where this option is considered
an alias to Builder::Experimental
.
Slow
Build every chapter as a separate angular application.
This uses stable Angular APIs and should work for Angular 14.0.0 and up.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Builder
impl<'de> Deserialize<'de> for Builder
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for Builder
impl PartialEq for Builder
impl Copy for Builder
impl Eq for Builder
impl StructuralPartialEq for Builder
Auto Trait Implementations§
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more