#[non_exhaustive]pub struct CreateEnvironmentRequest {
pub parent: String,
pub environment: Option<Environment>,
/* private fields */
}Available on crate feature
environments only.Expand description
The request message for Environments.CreateEnvironment.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.parent: StringRequired. The Agent to create an
Environment for. Format:
projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>.
environment: Option<Environment>Required. The environment to create.
Implementations§
Source§impl CreateEnvironmentRequest
impl CreateEnvironmentRequest
Sourcepub fn set_parent<T: Into<String>>(self, v: T) -> Self
pub fn set_parent<T: Into<String>>(self, v: T) -> Self
Sourcepub fn set_environment<T>(self, v: T) -> Selfwhere
T: Into<Environment>,
pub fn set_environment<T>(self, v: T) -> Selfwhere
T: Into<Environment>,
Sets the value of environment.
§Example
ⓘ
use google_cloud_dialogflow_cx_v3::model::Environment;
let x = CreateEnvironmentRequest::new().set_environment(Environment::default()/* use setters */);Sourcepub fn set_or_clear_environment<T>(self, v: Option<T>) -> Selfwhere
T: Into<Environment>,
pub fn set_or_clear_environment<T>(self, v: Option<T>) -> Selfwhere
T: Into<Environment>,
Sets or clears the value of environment.
§Example
ⓘ
use google_cloud_dialogflow_cx_v3::model::Environment;
let x = CreateEnvironmentRequest::new().set_or_clear_environment(Some(Environment::default()/* use setters */));
let x = CreateEnvironmentRequest::new().set_or_clear_environment(None::<Environment>);Trait Implementations§
Source§impl Clone for CreateEnvironmentRequest
impl Clone for CreateEnvironmentRequest
Source§fn clone(&self) -> CreateEnvironmentRequest
fn clone(&self) -> CreateEnvironmentRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateEnvironmentRequest
impl Debug for CreateEnvironmentRequest
Source§impl Default for CreateEnvironmentRequest
impl Default for CreateEnvironmentRequest
Source§fn default() -> CreateEnvironmentRequest
fn default() -> CreateEnvironmentRequest
Returns the “default value” for a type. Read more
Source§impl Message for CreateEnvironmentRequest
impl Message for CreateEnvironmentRequest
Source§impl PartialEq for CreateEnvironmentRequest
impl PartialEq for CreateEnvironmentRequest
Source§fn eq(&self, other: &CreateEnvironmentRequest) -> bool
fn eq(&self, other: &CreateEnvironmentRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateEnvironmentRequest
Auto Trait Implementations§
impl Freeze for CreateEnvironmentRequest
impl RefUnwindSafe for CreateEnvironmentRequest
impl Send for CreateEnvironmentRequest
impl Sync for CreateEnvironmentRequest
impl Unpin for CreateEnvironmentRequest
impl UnsafeUnpin for CreateEnvironmentRequest
impl UnwindSafe for CreateEnvironmentRequest
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