[][src]Struct sdkms::api_model::AppRequest

pub struct AppRequest {
    pub add_groups: Option<AppGroups>,
    pub app_type: Option<String>,
    pub credential: Option<AppCredential>,
    pub default_group: Option<Uuid>,
    pub del_groups: Option<HashSet<Uuid>>,
    pub description: Option<String>,
    pub enabled: Option<bool>,
    pub interface: Option<String>,
    pub mod_groups: Option<AppGroups>,
    pub name: Option<String>,
    pub oauth_config: Option<AppOauthConfig>,
    pub secret_size: Option<u32>,
}

Fields

add_groups: Option<AppGroups>app_type: Option<String>credential: Option<AppCredential>default_group: Option<Uuid>del_groups: Option<HashSet<Uuid>>description: Option<String>enabled: Option<bool>interface: Option<String>mod_groups: Option<AppGroups>name: Option<String>oauth_config: Option<AppOauthConfig>secret_size: Option<u32>

Trait Implementations

impl Clone for AppRequest[src]

impl Debug for AppRequest[src]

impl Default for AppRequest[src]

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

impl Serialize for AppRequest[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.

impl<T> Typeable for T where
    T: Any