[][src]Struct rsyn::ServerStatistics

pub struct ServerStatistics {
    pub total_bytes_read: i64,
    pub total_bytes_written: i64,
    pub total_file_size: i64,
    pub flist_build_time: Option<i64>,
    pub flist_xfer_time: Option<i64>,
}

Statistics from a remote server about how much work it did.

Fields

total_bytes_read: i64

Total bytes sent over the network from the client to the server.

total_bytes_written: i64

Total bytes sent over the network from the server to the client, ignoring any text messages.

total_file_size: i64

The sum of the size of all file sizes in the transfer. This does not count directories or special files, but does include the size of symlinks.

flist_build_time: Option<i64>

The number of seconds spent by the server building a file list.

flist_xfer_time: Option<i64>

The number of seconds the server spent sending the file list to the client.

Trait Implementations

impl Debug for ServerStatistics[src]

impl Default for ServerStatistics[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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.