pub struct BuildTimeFactor {
pub factor: String,
pub impact: f32,
pub description: String,
}Expand description
Factor affecting build time
Fields§
§factor: StringFactor name
impact: f32Impact on build time (multiplier)
description: StringDescription
Trait Implementations§
Source§impl Clone for BuildTimeFactor
impl Clone for BuildTimeFactor
Source§fn clone(&self) -> BuildTimeFactor
fn clone(&self) -> BuildTimeFactor
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 BuildTimeFactor
impl Debug for BuildTimeFactor
Source§impl<'de> Deserialize<'de> for BuildTimeFactor
impl<'de> Deserialize<'de> for BuildTimeFactor
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
Auto Trait Implementations§
impl Freeze for BuildTimeFactor
impl RefUnwindSafe for BuildTimeFactor
impl Send for BuildTimeFactor
impl Sync for BuildTimeFactor
impl Unpin for BuildTimeFactor
impl UnsafeUnpin for BuildTimeFactor
impl UnwindSafe for BuildTimeFactor
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