pub struct DatacenterAddressResponse {
pub datacenter_address_type: DatacenterAddressType,
pub supported_carriers_for_return_shipment: Vec<String>,
pub data_center_azure_location: Option<String>,
}Expand description
Datacenter address for given storage location.
Fields§
§datacenter_address_type: DatacenterAddressTypeData center address type
supported_carriers_for_return_shipment: Vec<String>List of supported carriers for return shipment.
data_center_azure_location: Option<String>Azure Location where the Data Center serves primarily.
Implementations§
source§impl DatacenterAddressResponse
impl DatacenterAddressResponse
pub fn new(datacenter_address_type: DatacenterAddressType) -> Self
Trait Implementations§
source§impl Clone for DatacenterAddressResponse
impl Clone for DatacenterAddressResponse
source§fn clone(&self) -> DatacenterAddressResponse
fn clone(&self) -> DatacenterAddressResponse
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 DatacenterAddressResponse
impl Debug for DatacenterAddressResponse
source§impl<'de> Deserialize<'de> for DatacenterAddressResponse
impl<'de> Deserialize<'de> for DatacenterAddressResponse
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 PartialEq for DatacenterAddressResponse
impl PartialEq for DatacenterAddressResponse
source§fn eq(&self, other: &DatacenterAddressResponse) -> bool
fn eq(&self, other: &DatacenterAddressResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DatacenterAddressResponse
Auto Trait Implementations§
impl RefUnwindSafe for DatacenterAddressResponse
impl Send for DatacenterAddressResponse
impl Sync for DatacenterAddressResponse
impl Unpin for DatacenterAddressResponse
impl UnwindSafe for DatacenterAddressResponse
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