pub enum CloudLocation {
Public {
account: String,
},
China {
account: String,
},
Emulator {
address: String,
port: u16,
},
Custom {
account: String,
uri: String,
},
}
Expand description
The cloud with which you want to interact.
Variants§
Public
Azure public cloud
China
Azure China cloud
Emulator
Use the well-known emulator
Custom
A custom base URL
Implementations§
Trait Implementations§
Source§impl Clone for CloudLocation
impl Clone for CloudLocation
Source§fn clone(&self) -> CloudLocation
fn clone(&self) -> CloudLocation
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 CloudLocation
impl Debug for CloudLocation
Auto Trait Implementations§
impl Freeze for CloudLocation
impl RefUnwindSafe for CloudLocation
impl Send for CloudLocation
impl Sync for CloudLocation
impl Unpin for CloudLocation
impl UnwindSafe for CloudLocation
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