#[repr(C)]pub enum FileTransferState {
Initialising = 0,
Active = 1,
Finished = 2,
}Expand description
File transfer status
Variants§
Initialising = 0
File transfer is establishing connection.
Active = 1
File transfer is in progress
Finished = 2
File transfer has finished
Trait Implementations§
Source§impl Clone for FileTransferState
impl Clone for FileTransferState
Source§fn clone(&self) -> FileTransferState
fn clone(&self) -> FileTransferState
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 FileTransferState
impl Debug for FileTransferState
Source§impl PartialEq for FileTransferState
impl PartialEq for FileTransferState
impl Copy for FileTransferState
impl Eq for FileTransferState
impl StructuralPartialEq for FileTransferState
Auto Trait Implementations§
impl Freeze for FileTransferState
impl RefUnwindSafe for FileTransferState
impl Send for FileTransferState
impl Sync for FileTransferState
impl Unpin for FileTransferState
impl UnwindSafe for FileTransferState
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