pub enum FileTransferAction {
Download(CloudToDeviceRequest),
Upload(DeviceToCloudRequest),
}Expand description
Action to transfer one file to and from the Cloud.
Variants§
Trait Implementations§
Source§impl Clone for FileTransferAction
impl Clone for FileTransferAction
Source§fn clone(&self) -> FileTransferAction
fn clone(&self) -> FileTransferAction
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 FileTransferAction
impl Debug for FileTransferAction
Source§impl Hash for FileTransferAction
impl Hash for FileTransferAction
Source§impl PartialEq for FileTransferAction
impl PartialEq for FileTransferAction
impl Eq for FileTransferAction
impl StructuralPartialEq for FileTransferAction
Auto Trait Implementations§
impl Freeze for FileTransferAction
impl RefUnwindSafe for FileTransferAction
impl Send for FileTransferAction
impl Sync for FileTransferAction
impl Unpin for FileTransferAction
impl UnwindSafe for FileTransferAction
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