pub enum LinearDevTargetParams {
Flakey(FlakeyTargetParams),
Linear(LinearTargetParams),
}Expand description
Target params for linear dev. These are either flakey or linear.
Variants§
Trait Implementations§
source§impl Clone for LinearDevTargetParams
impl Clone for LinearDevTargetParams
source§fn clone(&self) -> LinearDevTargetParams
fn clone(&self) -> LinearDevTargetParams
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 LinearDevTargetParams
impl Debug for LinearDevTargetParams
source§impl Display for LinearDevTargetParams
impl Display for LinearDevTargetParams
source§impl FromStr for LinearDevTargetParams
impl FromStr for LinearDevTargetParams
source§impl PartialEq<LinearDevTargetParams> for LinearDevTargetParams
impl PartialEq<LinearDevTargetParams> for LinearDevTargetParams
source§fn eq(&self, other: &LinearDevTargetParams) -> bool
fn eq(&self, other: &LinearDevTargetParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl TargetParams for LinearDevTargetParams
impl TargetParams for LinearDevTargetParams
source§fn target_type(&self) -> TargetTypeBuf
fn target_type(&self) -> TargetTypeBuf
Return the target type
impl Eq for LinearDevTargetParams
impl StructuralEq for LinearDevTargetParams
impl StructuralPartialEq for LinearDevTargetParams
Auto Trait Implementations§
impl RefUnwindSafe for LinearDevTargetParams
impl Send for LinearDevTargetParams
impl Sync for LinearDevTargetParams
impl Unpin for LinearDevTargetParams
impl UnwindSafe for LinearDevTargetParams
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