[][src]Struct em_client::models::AppNodeInfo

pub struct AppNodeInfo {
    pub certificate: Certificate,
    pub created_at: i64,
    pub node_id: Uuid,
    pub node_name: Option<String>,
    pub status: Option<AppStatus>,
    pub build_info: Option<Build>,
    pub message_count: Option<i32>,
    pub key_id: Option<String>,
    pub is_debug: Option<bool>,
}

Fields

certificate: Certificatecreated_at: i64

App node creation time

node_id: Uuid

Node Id

node_name: Option<String>

Node name

status: Option<AppStatus>build_info: Option<Build>message_count: Option<i32>

App heartbeat message count

key_id: Option<String>

Key Id for app heartbeat

is_debug: Option<bool>

App running in debug mode or not

Implementations

impl AppNodeInfo[src]

pub fn new(
    certificate: Certificate,
    created_at: i64,
    node_id: Uuid
) -> AppNodeInfo
[src]

Trait Implementations

impl Clone for AppNodeInfo[src]

impl Debug for AppNodeInfo[src]

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

impl PartialEq<AppNodeInfo> for AppNodeInfo[src]

impl Serialize for AppNodeInfo[src]

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