pub struct CreateDeploymentOptions {Show 20 fields
pub name: Option<String>,
pub image: Option<String>,
pub skip_pull_image: Option<bool>,
pub image_tag: Option<ImageTag>,
pub wait_until_healthy: Option<bool>,
pub wait_until_healthy_timeout: Option<Duration>,
pub creation_source: Option<CreationSource>,
pub local_seed_location: Option<String>,
pub mongodb_initdb_database: Option<String>,
pub mongodb_initdb_root_password_file: Option<String>,
pub mongodb_initdb_root_password: Option<String>,
pub mongodb_initdb_root_username_file: Option<String>,
pub mongodb_initdb_root_username: Option<String>,
pub voyage_api_key: Option<String>,
pub load_sample_data: Option<bool>,
pub mongot_log_file: Option<String>,
pub runner_log_file: Option<String>,
pub do_not_track: Option<bool>,
pub telemetry_base_url: Option<String>,
pub mongodb_port_binding: Option<MongoDBPortBinding>,
}Fields§
§name: Option<String>§image: Option<String>§skip_pull_image: Option<bool>§image_tag: Option<ImageTag>§wait_until_healthy: Option<bool>§wait_until_healthy_timeout: Option<Duration>§creation_source: Option<CreationSource>§local_seed_location: Option<String>§mongodb_initdb_database: Option<String>§mongodb_initdb_root_password_file: Option<String>§mongodb_initdb_root_password: Option<String>§mongodb_initdb_root_username_file: Option<String>§mongodb_initdb_root_username: Option<String>§voyage_api_key: Option<String>§load_sample_data: Option<bool>§mongot_log_file: Option<String>§runner_log_file: Option<String>§do_not_track: Option<bool>§telemetry_base_url: Option<String>§mongodb_port_binding: Option<MongoDBPortBinding>Trait Implementations§
Source§impl Clone for CreateDeploymentOptions
impl Clone for CreateDeploymentOptions
Source§fn clone(&self) -> CreateDeploymentOptions
fn clone(&self) -> CreateDeploymentOptions
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 CreateDeploymentOptions
impl Debug for CreateDeploymentOptions
Source§impl Default for CreateDeploymentOptions
impl Default for CreateDeploymentOptions
Source§fn default() -> CreateDeploymentOptions
fn default() -> CreateDeploymentOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateDeploymentOptions
impl<'de> Deserialize<'de> for CreateDeploymentOptions
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 From<&CreateDeploymentOptions> for ContainerCreateBody
impl From<&CreateDeploymentOptions> for ContainerCreateBody
Source§fn from(deployment_options: &CreateDeploymentOptions) -> Self
fn from(deployment_options: &CreateDeploymentOptions) -> Self
Converts to this type from the input type.
Source§impl From<&CreateDeploymentOptions> for CreateContainerOptions
impl From<&CreateDeploymentOptions> for CreateContainerOptions
Source§fn from(deployment_options: &CreateDeploymentOptions) -> Self
fn from(deployment_options: &CreateDeploymentOptions) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CreateDeploymentOptions
impl PartialEq for CreateDeploymentOptions
Source§impl Serialize for CreateDeploymentOptions
impl Serialize for CreateDeploymentOptions
impl Eq for CreateDeploymentOptions
impl StructuralPartialEq for CreateDeploymentOptions
Auto Trait Implementations§
impl Freeze for CreateDeploymentOptions
impl RefUnwindSafe for CreateDeploymentOptions
impl Send for CreateDeploymentOptions
impl Sync for CreateDeploymentOptions
impl Unpin for CreateDeploymentOptions
impl UnsafeUnpin for CreateDeploymentOptions
impl UnwindSafe for CreateDeploymentOptions
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