[][src]Struct cloudsctl::cloud_config::Clouds

pub struct Clouds {
    pub clouds: HashMap<String, Cloud>,
}

Fields

clouds: HashMap<String, Cloud>

Implementations

impl Clouds[src]

pub fn load_from_files(
    ignore_missing_profile: &bool
) -> Result<Clouds, Box<dyn Error>>
[src]

pub fn as_files(&mut self, clouds_file: &Path, secure_file: &Path) -> Result<()>[src]

Trait Implementations

impl CloudGroup for Clouds[src]

impl Debug for Clouds[src]

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

impl PartialEq<Clouds> for Clouds[src]

impl Serialize for Clouds[src]

impl StructuralPartialEq for Clouds[src]

Auto Trait Implementations

impl RefUnwindSafe for Clouds

impl Send for Clouds

impl Sync for Clouds

impl Unpin for Clouds

impl UnwindSafe for Clouds

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, 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>,