[][src]Struct cloudsctl::cloud_config::Cloud

pub struct Cloud {
    pub auth: Option<Auth>,
    pub region_name: Option<String>,
    pub identity_api_version: Option<String>,
    pub volume_api_version: Option<String>,
    pub identity_endpoint_override: Option<String>,
    pub verify: Option<String>,
    pub cacert: Option<String>,
    pub profile: Option<String>,
}

Fields

auth: Option<Auth>region_name: Option<String>identity_api_version: Option<String>volume_api_version: Option<String>identity_endpoint_override: Option<String>verify: Option<String>cacert: Option<String>profile: Option<String>

Implementations

impl Cloud[src]

pub fn override_with(&mut self, other: &Cloud)[src]

pub fn build_env(&self) -> HashMap<String, String>[src]

Trait Implementations

impl Clone for Cloud[src]

impl Debug for Cloud[src]

impl Default for Cloud[src]

impl<'de> Deserialize<'de> for Cloud[src]

impl<'_, '_> From<&'_ ArgMatches<'_>> for Cloud[src]

impl From<Cloud> for IndexMap<String, String>[src]

impl PartialEq<Cloud> for Cloud[src]

impl Serialize for Cloud[src]

impl StructuralPartialEq for Cloud[src]

Auto Trait Implementations

impl RefUnwindSafe for Cloud

impl Send for Cloud

impl Sync for Cloud

impl Unpin for Cloud

impl UnwindSafe for Cloud

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,