pub struct LanguageEstimation {
pub language: String,
pub code_lines: usize,
pub effort_months: f64,
pub cost: f64,
}Expand description
Per-language estimation breakdown.
Fields§
§language: String§code_lines: usize§effort_months: f64§cost: f64Trait Implementations§
Source§impl Clone for LanguageEstimation
impl Clone for LanguageEstimation
Source§fn clone(&self) -> LanguageEstimation
fn clone(&self) -> LanguageEstimation
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 LanguageEstimation
impl Debug for LanguageEstimation
Auto Trait Implementations§
impl Freeze for LanguageEstimation
impl RefUnwindSafe for LanguageEstimation
impl Send for LanguageEstimation
impl Sync for LanguageEstimation
impl Unpin for LanguageEstimation
impl UnsafeUnpin for LanguageEstimation
impl UnwindSafe for LanguageEstimation
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