pub struct UpdateExperimentRequest {
pub description: Option<String>,
pub display_name: Option<String>,
pub experiment_name: String,
}
Fields§
§description: Option<String>
The description of the experiment.
display_name: Option<String>
The name of the experiment as displayed. The name doesn't need to be unique. If DisplayName
isn't specified, ExperimentName
is displayed.
experiment_name: String
The name of the experiment to update.
Trait Implementations§
Source§impl Clone for UpdateExperimentRequest
impl Clone for UpdateExperimentRequest
Source§fn clone(&self) -> UpdateExperimentRequest
fn clone(&self) -> UpdateExperimentRequest
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 UpdateExperimentRequest
impl Debug for UpdateExperimentRequest
Source§impl Default for UpdateExperimentRequest
impl Default for UpdateExperimentRequest
Source§fn default() -> UpdateExperimentRequest
fn default() -> UpdateExperimentRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateExperimentRequest
impl PartialEq for UpdateExperimentRequest
Source§impl Serialize for UpdateExperimentRequest
impl Serialize for UpdateExperimentRequest
impl StructuralPartialEq for UpdateExperimentRequest
Auto Trait Implementations§
impl Freeze for UpdateExperimentRequest
impl RefUnwindSafe for UpdateExperimentRequest
impl Send for UpdateExperimentRequest
impl Sync for UpdateExperimentRequest
impl Unpin for UpdateExperimentRequest
impl UnwindSafe for UpdateExperimentRequest
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