#[repr(C)]pub struct FileTransfer {
pub nStatus: FileTransferStatus,
pub nTransferID: INT32,
pub nChannelID: INT32,
pub szLocalFilePath: [TTCHAR; 512],
pub szRemoteFileName: [TTCHAR; 512],
pub nFileSize: INT64,
pub nTransferred: INT64,
pub bInbound: TTBOOL,
}Fields§
§nStatus: FileTransferStatus§nTransferID: INT32§nChannelID: INT32§szLocalFilePath: [TTCHAR; 512]§szRemoteFileName: [TTCHAR; 512]§nFileSize: INT64§nTransferred: INT64§bInbound: TTBOOLTrait Implementations§
Source§impl Clone for FileTransfer
impl Clone for FileTransfer
Source§fn clone(&self) -> FileTransfer
fn clone(&self) -> FileTransfer
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FileTransfer
impl Debug for FileTransfer
Source§impl Default for FileTransfer
impl Default for FileTransfer
impl Copy for FileTransfer
Auto Trait Implementations§
impl Freeze for FileTransfer
impl RefUnwindSafe for FileTransfer
impl Send for FileTransfer
impl Sync for FileTransfer
impl Unpin for FileTransfer
impl UnwindSafe for FileTransfer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more