[][src]Struct heroku_rs::endpoints::teams::TeamPreferences

pub struct TeamPreferences {
    pub default_permission: Option<String>,
    pub whitelisting_enabled: Option<bool>,
}

Team Preferences

Stability: development

Tracks a Team’s Preferences

For more information please refer to the Heroku documentation

Fields

default_permission: Option<String>

The default permission used when adding new members to the team one of:"admin" or "member" or "viewer" or null

whitelisting_enabled: Option<bool>

Whether whitelisting rules should be applied to add-on installations

Trait Implementations

impl ApiResult for TeamPreferences[src]

impl Clone for TeamPreferences[src]

impl Debug for TeamPreferences[src]

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

impl<'a> HerokuEndpoint<TeamPreferences, (), ()> for TeamPreferenceList<'a>[src]

impl Serialize for TeamPreferences[src]

Auto Trait Implementations

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.