pub struct CloudEngineProviderLocation {
pub dc_key: String,
pub display_name: String,
pub latitude: f64,
pub longitude: f64,
pub owner: String,
pub region: String,
}Expand description
CloudEngineProviderLocation
Raw official Dashboard location attached to one node provider.
Fields§
§dc_key: StringDashboard data-center key.
display_name: StringHuman-facing Dashboard location label.
latitude: f64Raw decimal latitude decoded as a finite number.
longitude: f64Raw decimal longitude decoded as a finite number.
owner: StringDashboard data-center owner label.
region: StringRaw Dashboard region label.
Trait Implementations§
Source§impl Clone for CloudEngineProviderLocation
impl Clone for CloudEngineProviderLocation
Source§fn clone(&self) -> CloudEngineProviderLocation
fn clone(&self) -> CloudEngineProviderLocation
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 CloudEngineProviderLocation
impl Debug for CloudEngineProviderLocation
Source§impl<'de> Deserialize<'de> for CloudEngineProviderLocation
impl<'de> Deserialize<'de> for CloudEngineProviderLocation
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 CloudEngineProviderLocation
Auto Trait Implementations§
impl Freeze for CloudEngineProviderLocation
impl RefUnwindSafe for CloudEngineProviderLocation
impl Send for CloudEngineProviderLocation
impl Sync for CloudEngineProviderLocation
impl Unpin for CloudEngineProviderLocation
impl UnsafeUnpin for CloudEngineProviderLocation
impl UnwindSafe for CloudEngineProviderLocation
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