pub struct GoogleCloudMlV1__Study {
pub create_time: Option<DateTime<Utc>>,
pub inactive_reason: Option<String>,
pub name: Option<String>,
pub state: Option<String>,
pub study_config: Option<GoogleCloudMlV1__StudyConfig>,
}Expand description
A message representing a Study.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations studies create projects (request|response)
- locations studies get projects (response)
Fields§
§create_time: Option<DateTime<Utc>>Output only. Time at which the study was created.
inactive_reason: Option<String>Output only. A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
name: Option<String>Output only. The name of a study.
state: Option<String>Output only. The detailed state of a study.
study_config: Option<GoogleCloudMlV1__StudyConfig>Required. Configuration of the study.
Trait Implementations§
Source§impl Clone for GoogleCloudMlV1__Study
impl Clone for GoogleCloudMlV1__Study
Source§fn clone(&self) -> GoogleCloudMlV1__Study
fn clone(&self) -> GoogleCloudMlV1__Study
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 GoogleCloudMlV1__Study
impl Debug for GoogleCloudMlV1__Study
Source§impl Default for GoogleCloudMlV1__Study
impl Default for GoogleCloudMlV1__Study
Source§fn default() -> GoogleCloudMlV1__Study
fn default() -> GoogleCloudMlV1__Study
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudMlV1__Study
impl<'de> Deserialize<'de> for GoogleCloudMlV1__Study
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
Source§impl Serialize for GoogleCloudMlV1__Study
impl Serialize for GoogleCloudMlV1__Study
impl RequestValue for GoogleCloudMlV1__Study
impl ResponseResult for GoogleCloudMlV1__Study
Auto Trait Implementations§
impl Freeze for GoogleCloudMlV1__Study
impl RefUnwindSafe for GoogleCloudMlV1__Study
impl Send for GoogleCloudMlV1__Study
impl Sync for GoogleCloudMlV1__Study
impl Unpin for GoogleCloudMlV1__Study
impl UnwindSafe for GoogleCloudMlV1__Study
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