pub struct RegionConfigurationResponse {
pub schedule_availability_response: Option<ScheduleAvailabilityResponse>,
pub transport_availability_response: Option<TransportAvailabilityResponse>,
pub datacenter_address_response: Option<DatacenterAddressResponseUnion>,
}Expand description
Configuration response specific to a region.
Fields§
§schedule_availability_response: Option<ScheduleAvailabilityResponse>Schedule availability for given sku in a region.
transport_availability_response: Option<TransportAvailabilityResponse>Transport options available for given sku in a region.
datacenter_address_response: Option<DatacenterAddressResponseUnion>Datacenter address for given storage location.
Implementations§
Trait Implementations§
Source§impl Clone for RegionConfigurationResponse
impl Clone for RegionConfigurationResponse
Source§fn clone(&self) -> RegionConfigurationResponse
fn clone(&self) -> RegionConfigurationResponse
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 RegionConfigurationResponse
impl Debug for RegionConfigurationResponse
Source§impl Default for RegionConfigurationResponse
impl Default for RegionConfigurationResponse
Source§fn default() -> RegionConfigurationResponse
fn default() -> RegionConfigurationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RegionConfigurationResponse
impl<'de> Deserialize<'de> for RegionConfigurationResponse
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
impl StructuralPartialEq for RegionConfigurationResponse
Auto Trait Implementations§
impl Freeze for RegionConfigurationResponse
impl RefUnwindSafe for RegionConfigurationResponse
impl Send for RegionConfigurationResponse
impl Sync for RegionConfigurationResponse
impl Unpin for RegionConfigurationResponse
impl UnwindSafe for RegionConfigurationResponse
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