[][src]Struct graph_rs_types::entitytypes::MessageRule

pub struct MessageRule {
    pub display_name: String,
    pub sequence: i32,
    pub conditions: MessageRulePredicates,
    pub actions: MessageRuleActions,
    pub exceptions: MessageRulePredicates,
    pub is_enabled: bool,
    pub has_error: bool,
    pub is_read_only: bool,
}

Fields

display_name: Stringsequence: i32conditions: MessageRulePredicatesactions: MessageRuleActionsexceptions: MessageRulePredicatesis_enabled: boolhas_error: boolis_read_only: bool

Trait Implementations

impl Eq for MessageRule[src]

impl Clone for MessageRule[src]

impl PartialEq<MessageRule> for MessageRule[src]

impl Debug for MessageRule[src]

impl Serialize for MessageRule[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]