[][src]Struct isilon::models::SyncJobWorker

pub struct SyncJobWorker {
    pub connected: Option<bool>,
    pub last_split: Option<i32>,
    pub last_work: Option<i32>,
    pub lin: Option<i32>,
    pub lnn: Option<i32>,
    pub process_id: Option<i32>,
    pub source_host: Option<String>,
    pub target_host: Option<String>,
    pub worker_id: Option<i32>,
}

Fields

connected: Option<bool>

Whether there is a connection between the source and target.

last_split: Option<i32>

The last time a network split occurred.

last_work: Option<i32>

The last time the worker performed work.

lin: Option<i32>

The LIN being worked on.

lnn: Option<i32>

The lnn the worker is assigned to run on.

process_id: Option<i32>

The process ID of the worker.

source_host: Option<String>

The source host for this worker.

target_host: Option<String>

The target host for this worker.

worker_id: Option<i32>

The ID of the worker.

Trait Implementations

impl Debug for SyncJobWorker[src]

impl Serialize for SyncJobWorker[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T