pub(crate) enum BuildLibs {
Yes {
force: bool,
tests: bool,
},
No,
}
Expand description
Whether to build Flux’s libs
Variants§
Yes
If force
is true, forces a clean build. If tests
is true, check library tests.
No
Do not build libs
Auto Trait Implementations§
impl Freeze for BuildLibs
impl RefUnwindSafe for BuildLibs
impl Send for BuildLibs
impl Sync for BuildLibs
impl Unpin for BuildLibs
impl UnwindSafe for BuildLibs
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