[][src]Struct isilon::models::NdmpSessionExtended

pub struct NdmpSessionExtended {
    pub data_bytes_transferred: u64,
    pub data_state: String,
    pub dest_path: String,
    pub dma_ip_addr: String,
    pub elapsed_time: i32,
    pub id: String,
    pub mover_bytes_transferred: u64,
    pub mover_state: String,
    pub operation: String,
    pub remote_ip_addr: String,
    pub scsi_device: String,
    pub session: String,
    pub source_path: String,
    pub start_time: i32,
    pub tape_device: String,
    pub tape_open_mode: String,
    pub throughput: i32,
}

Fields

data_bytes_transferred: u64

Bytes transferred to/from the filesystem

data_state: String

State of the NDMP Data Service

dest_path: String

The path being recovered to

dma_ip_addr: String

IP address of the DMA

elapsed_time: i32

Number of seconds elapsed since the backup was started

id: String

Unique display ID.

mover_bytes_transferred: u64

Bytes transferred to/from tape or remote writer

mover_state: String

State of the NDMP Mover Service

operation: String

The type of backup session

remote_ip_addr: String

IP address of the remote NDMP participant

scsi_device: String

Name of the media changer device used if any

session: String

Session ID in form ..

source_path: String

The path being backed up

start_time: i32

Time backup was started in seconds since epoch

tape_device: String

Name of the tape device used if any

tape_open_mode: String

Describes the mode in which the tape is opened

throughput: i32

The throughput in MB/s

Trait Implementations

impl Debug for NdmpSessionExtended[src]

impl Serialize for NdmpSessionExtended[src]

impl<'de> Deserialize<'de> for NdmpSessionExtended[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