[][src]Struct ya_client_model::activity::activity_state::ActivityState

pub struct ActivityState {
    pub state: StatePair,
    pub reason: Option<String>,
    pub error_message: Option<String>,
}

Fields

state: StatePairreason: Option<String>

Reason for Activity termination (specified when Activity in Terminated state).

error_message: Option<String>

If error caused state change - error message shall be provided.

Implementations

impl ActivityState[src]

pub fn alive(&self) -> bool[src]

Trait Implementations

impl Clone for ActivityState[src]

impl Debug for ActivityState[src]

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

impl<'_> From<&'_ StatePair> for ActivityState[src]

impl From<StatePair> for ActivityState[src]

impl PartialEq<ActivityState> for ActivityState[src]

impl Serialize for ActivityState[src]

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