pub enum EffortModelKind {
Cocomo81Basic,
Cocomo2Early,
Ensemble,
}Expand description
Effort-estimation model requested by the caller.
Cocomo81Basic is the deterministic baseline.
Other variants may be accepted by the request layer before the underlying
engine fully implements them; those cases should fail clearly rather than
silently degrading.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for EffortModelKind
impl Clone for EffortModelKind
Source§fn clone(&self) -> EffortModelKind
fn clone(&self) -> EffortModelKind
Returns a duplicate 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 EffortModelKind
impl Debug for EffortModelKind
Source§impl Display for EffortModelKind
impl Display for EffortModelKind
Source§impl PartialEq for EffortModelKind
impl PartialEq for EffortModelKind
impl Copy for EffortModelKind
impl Eq for EffortModelKind
impl StructuralPartialEq for EffortModelKind
Auto Trait Implementations§
impl Freeze for EffortModelKind
impl RefUnwindSafe for EffortModelKind
impl Send for EffortModelKind
impl Sync for EffortModelKind
impl Unpin for EffortModelKind
impl UnsafeUnpin for EffortModelKind
impl UnwindSafe for EffortModelKind
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