[][src]Struct chuoku::profile::Profile

pub struct Profile {
    pub order: usize,
    pub profile_name: String,
    pub region: Option<String>,
    pub access: Option<Access>,
    pub credential: Option<Credential>,
}

Fields

order: usizeprofile_name: Stringregion: Option<String>access: Option<Access>credential: Option<Credential>

Implementations

impl Profile[src]

pub fn print_table(profile_map: &ProfileMap)[src]

pub fn export(&self) -> Result<String>[src]

pub fn profile_type(&self) -> ProfileType[src]

Trait Implementations

impl Debug for Profile[src]

impl Default for Profile[src]

impl PartialEq<Profile> for Profile[src]

impl StructuralPartialEq for Profile[src]

Auto Trait Implementations

impl RefUnwindSafe for Profile

impl Send for Profile

impl Sync for Profile

impl Unpin for Profile

impl UnwindSafe for Profile

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> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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