Struct aws_sdk_gamelift::types::AnywhereConfiguration
source · #[non_exhaustive]pub struct AnywhereConfiguration {
pub cost: Option<String>,
}Expand description
Amazon GameLift Anywhere configuration options for your Anywhere fleets.
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.cost: Option<String>The cost to run your fleet per hour. Amazon GameLift uses the provided cost of your fleet to balance usage in queues. For more information about queues, see Setting up queues in the Amazon GameLift Developer Guide.
Implementations§
source§impl AnywhereConfiguration
impl AnywhereConfiguration
sourcepub fn cost(&self) -> Option<&str>
pub fn cost(&self) -> Option<&str>
The cost to run your fleet per hour. Amazon GameLift uses the provided cost of your fleet to balance usage in queues. For more information about queues, see Setting up queues in the Amazon GameLift Developer Guide.
source§impl AnywhereConfiguration
impl AnywhereConfiguration
sourcepub fn builder() -> AnywhereConfigurationBuilder
pub fn builder() -> AnywhereConfigurationBuilder
Creates a new builder-style object to manufacture AnywhereConfiguration.
Trait Implementations§
source§impl Clone for AnywhereConfiguration
impl Clone for AnywhereConfiguration
source§fn clone(&self) -> AnywhereConfiguration
fn clone(&self) -> AnywhereConfiguration
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 AnywhereConfiguration
impl Debug for AnywhereConfiguration
source§impl PartialEq<AnywhereConfiguration> for AnywhereConfiguration
impl PartialEq<AnywhereConfiguration> for AnywhereConfiguration
source§fn eq(&self, other: &AnywhereConfiguration) -> bool
fn eq(&self, other: &AnywhereConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AnywhereConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for AnywhereConfiguration
impl Send for AnywhereConfiguration
impl Sync for AnywhereConfiguration
impl Unpin for AnywhereConfiguration
impl UnwindSafe for AnywhereConfiguration
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