pub struct Treatment {
pub kind: String,
pub patch_hash: String,
pub patch_summary: String,
}Expand description
The treatment applied in the experiment.
Fields§
§kind: String“baseline” or “patch_applied”.
patch_hash: StringContent hash of the patch.
patch_summary: StringSummary of the patch (files touched, edit count).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Treatment
impl<'de> Deserialize<'de> for Treatment
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 Treatment
impl RefUnwindSafe for Treatment
impl Send for Treatment
impl Sync for Treatment
impl Unpin for Treatment
impl UnsafeUnpin for Treatment
impl UnwindSafe for Treatment
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