flep 0.2.0

File transfer protocol (FTP) library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The `Transfer` type.

use FileType;

/// A data transfer.
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct Transfer
{
    pub file_type: FileType,
    pub data: Vec<u8>,
}