pub struct EnvironmentAddParams {
pub connect_timeout_ms: Option<u64>,
pub environment_id: String,
pub exec_server_url: String,
}Expand description
EnvironmentAddParams
JSON schema
{
"title": "EnvironmentAddParams",
"type": "object",
"required": [
"environmentId",
"execServerUrl"
],
"properties": {
"connectTimeoutMs": {
"description": "Optional WebSocket connection timeout. The server default applies when omitted.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"environmentId": {
"type": "string"
},
"execServerUrl": {
"type": "string"
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}Fields§
§connect_timeout_ms: Option<u64>Optional WebSocket connection timeout. The server default applies when omitted.
environment_id: String§exec_server_url: StringTrait Implementations§
Source§impl Clone for EnvironmentAddParams
impl Clone for EnvironmentAddParams
Source§fn clone(&self) -> EnvironmentAddParams
fn clone(&self) -> EnvironmentAddParams
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 EnvironmentAddParams
impl Debug for EnvironmentAddParams
Source§impl<'de> Deserialize<'de> for EnvironmentAddParams
impl<'de> Deserialize<'de> for EnvironmentAddParams
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 EnvironmentAddParams
impl RefUnwindSafe for EnvironmentAddParams
impl Send for EnvironmentAddParams
impl Sync for EnvironmentAddParams
impl Unpin for EnvironmentAddParams
impl UnsafeUnpin for EnvironmentAddParams
impl UnwindSafe for EnvironmentAddParams
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