[][src]Struct stcloud::models::notification_integration::NotificationIntegration

pub struct NotificationIntegration {
    pub applicability: Option<Applicability>,
    pub create_date: Option<String>,
    pub created_by_owner: Option<bool>,
    pub creator_id: Option<i64>,
    pub id: Option<i64>,
    pub integration_type: Option<IntegrationType>,
    pub name: Option<String>,
    pub params: Option<HashMap<String, String>>,
    pub state: Option<State>,
    pub user_id: Option<i64>,
}

Fields

applicability: Option<Applicability>create_date: Option<String>created_by_owner: Option<bool>creator_id: Option<i64>id: Option<i64>integration_type: Option<IntegrationType>name: Option<String>params: Option<HashMap<String, String>>state: Option<State>user_id: Option<i64>

Implementations

impl NotificationIntegration[src]

Trait Implementations

impl Clone for NotificationIntegration[src]

impl Debug for NotificationIntegration[src]

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

impl PartialEq<NotificationIntegration> for NotificationIntegration[src]

impl Serialize for NotificationIntegration[src]

impl StructuralPartialEq for NotificationIntegration[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.