pub enum InstallMode {
BuildFromSource,
FetchPrebuilt,
}Expand description
How BabbleSim/Zephyr binaries should be installed.
Variants§
BuildFromSource
Build everything from source (~30 min, requires full Zephyr toolchain).
FetchPrebuilt
Download a prebuilt release archive from GitHub (~30 s).
Trait Implementations§
Source§impl Clone for InstallMode
impl Clone for InstallMode
Source§fn clone(&self) -> InstallMode
fn clone(&self) -> InstallMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InstallMode
impl Debug for InstallMode
Source§impl PartialEq for InstallMode
impl PartialEq for InstallMode
Source§fn eq(&self, other: &InstallMode) -> bool
fn eq(&self, other: &InstallMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for InstallMode
impl Eq for InstallMode
impl StructuralPartialEq for InstallMode
Auto Trait Implementations§
impl Freeze for InstallMode
impl RefUnwindSafe for InstallMode
impl Send for InstallMode
impl Sync for InstallMode
impl Unpin for InstallMode
impl UnsafeUnpin for InstallMode
impl UnwindSafe for InstallMode
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