pub enum BuildStrategy {
Unknown,
Smart,
Adaptive,
AdaptiveThorough,
AdaptiveGreedy,
WaitForNBoards,
}
Expand description
Build Strategy
Variants§
Unknown
Smart
Adaptive
adjust the number of boards based on nrbes/mtb
AdaptiveThorough
Same as adaptive, but check if the rb events follow the mapping
AdaptiveGreedy
like adaptive, but add usize to the expected number of boards
WaitForNBoards
Implementations§
Trait Implementations§
Source§impl Clone for BuildStrategy
impl Clone for BuildStrategy
Source§fn clone(&self) -> BuildStrategy
fn clone(&self) -> BuildStrategy
Returns a copy of the value. Read more
1.0.0 · 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 BuildStrategy
impl Debug for BuildStrategy
Source§impl<'de> Deserialize<'de> for BuildStrategy
impl<'de> Deserialize<'de> for BuildStrategy
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 Display for BuildStrategy
impl Display for BuildStrategy
Source§impl From<u8> for BuildStrategy
impl From<u8> for BuildStrategy
Source§impl FromRandom for BuildStrategy
impl FromRandom for BuildStrategy
fn from_random() -> Self
Source§impl PartialEq for BuildStrategy
impl PartialEq for BuildStrategy
Source§impl Serialize for BuildStrategy
impl Serialize for BuildStrategy
impl Copy for BuildStrategy
impl StructuralPartialEq for BuildStrategy
Auto Trait Implementations§
impl Freeze for BuildStrategy
impl RefUnwindSafe for BuildStrategy
impl Send for BuildStrategy
impl Sync for BuildStrategy
impl Unpin for BuildStrategy
impl UnwindSafe for BuildStrategy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expression
fn into_sql<T>(self) -> Self::Expression
Convert
self
to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
Convert
&self
to an expression for Diesel’s query builder. Read more